Man Page: mcrypt_enc_get_modes_name
Operating Environment: php
Section: 3
MCRYPT_ENC_GET_MODES_NAME(3) 1 MCRYPT_ENC_GET_MODES_NAME(3) mcrypt_enc_get_modes_name - Returns the name of the opened modeSYNOPSISstring mcrypt_enc_get_modes_name (resource $td)DESCRIPTIONThis function returns the name of the mode.PARAMETERSo $td - The encryption descriptor.RETURN VALUESReturns the name as a string.EXAMPLESExample #1 mcrypt_enc_get_modes_name(3) example <?php $td = mcrypt_module_open (MCRYPT_CAST_256, '', MCRYPT_MODE_CFB, ''); echo mcrypt_enc_get_modes_name($td). " "; $td = mcrypt_module_open ('cast-256', '', 'ecb', ''); echo mcrypt_enc_get_modes_name($td). " "; ?> The above example will output: CFB ECB PHP Documentation Group MCRYPT_ENC_GET_MODES_NAME(3)
| Related Man Pages |
|---|
| mcrypt_encrypt(3) - php |
| oci_field_name(3) - php |
| mcrypt_get_iv_size(3) - php |
| mcrypt_get_key_size(3) - php |
| mdecrypt_generic(3) - php |
| Similar Topics in the Unix Linux Community |
|---|
| User Guide: Posting in the Emergency Forum |
| Rules for Homework & Coursework Questions Forum |
| Coming Soon: Upgrade Forum Software (Dec 31 - Jan 1) |
| New Code Tags (Syntax Highlighting) |