php man page for mcrypt_enc_get_modes_name

Query: mcrypt_enc_get_modes_name

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

MCRYPT_ENC_GET_MODES_NAME(3)						 1					      MCRYPT_ENC_GET_MODES_NAME(3)

mcrypt_enc_get_modes_name - Returns the name of the opened mode

SYNOPSIS
string mcrypt_enc_get_modes_name (resource $td)
DESCRIPTION
This function returns the name of the mode.
PARAMETERS
o $td - The encryption descriptor.
RETURN VALUES
Returns the name as a string.
EXAMPLES
Example #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
round(3) - php
dechex(3) - php
mcrypt_generic_init(3) - php
openssl_get_cipher_methods(3) - php
php_strip_whitespace(3) - php
Similar Topics in the Unix Linux Community
Simple rules of the UNIX.COM forums:
Rules for Homework &amp; Coursework Questions Forum
Forum Video Tutorial: How to Use Code Tags
Coming Soon: Upgrade Forum Software (Dec 31 - Jan 1)
The Order of the Wizard's Hat - Lifetime Achievement Award 2019 - Congrats to Don Cragun