예제 #1
0
bool f_mcrypt_enc_is_block_algorithm_mode(CObjRef td) {
  return mcrypt_enc_is_block_algorithm_mode(td.getTyped<MCrypt>()->m_td) == 1;
}
예제 #2
0
파일: ext_mcrypt.cpp 프로젝트: bd808/hhvm
bool HHVM_FUNCTION(mcrypt_enc_is_block_algorithm_mode, const Resource& td) {
  return mcrypt_enc_is_block_algorithm_mode(cast<MCrypt>(td)->m_td) == 1;
}