NAME ^

php_mcrypt.pir - PHP mcrypt Library

DESCRIPTION ^

Functions ^

string mcrypt_cbc(int cipher, string key, string data, int mode, string iv)
CBC crypt/decrypt data using key key with cipher cipher starting with ivNOT IMPLEMENTED.
string mcrypt_cfb(int cipher, string key, string data, int mode, string iv)
CFB crypt/decrypt data using key key with cipher cipher starting with ivNOT IMPLEMENTED.
string mcrypt_create_iv(int size, int source)
Create an initialization vector (IV)NOT IMPLEMENTED.
string mcrypt_decrypt(string cipher, string key, string data, string mode, string iv)
OFB crypt/decrypt data using key key with cipher cipher starting with ivNOT IMPLEMENTED.
string mcrypt_ecb(int cipher, string key, string data, int mode, string iv)
ECB crypt/decrypt data using key key with cipher cipher starting with ivNOT IMPLEMENTED.
string mcrypt_enc_get_algorithms_name(resource td)
Returns the name of the algorithm specified by the descriptor tdNOT IMPLEMENTED.
int mcrypt_enc_get_block_size(resource td)
Returns the block size of the cipher specified by the descriptor tdNOT IMPLEMENTED.
int mcrypt_enc_get_iv_size(resource td)
Returns the size of the IV in bytes of the algorithm specified by the descriptor tdNOT IMPLEMENTED.
int mcrypt_enc_get_key_size(resource td)
Returns the maximum supported key size in bytes of the algorithm specified by the descriptor tdNOT IMPLEMENTED.
string mcrypt_enc_get_modes_name(resource td)
Returns the name of the mode specified by the descriptor tdNOT IMPLEMENTED.
array mcrypt_enc_get_supported_key_sizes(resource td)
This function decrypts the crypttextNOT IMPLEMENTED.
bool mcrypt_enc_is_block_algorithm(resource td)
Returns TRUE if the alrogithm is a block algorithmsNOT IMPLEMENTED.
bool mcrypt_enc_is_block_algorithm_mode(resource td)
Returns TRUE if the mode is for use with block algorithmsNOT IMPLEMENTED.
bool mcrypt_enc_is_block_mode(resource td)
Returns TRUE if the mode outputs blocksNOT IMPLEMENTED.
int mcrypt_enc_self_test(resource td)
This function runs the self test on the algorithm specified by the descriptor tdNOT IMPLEMENTED.
string mcrypt_encrypt(string cipher, string key, string data, string mode, string iv)
OFB crypt/decrypt data using key key with cipher cipher starting with ivNOT IMPLEMENTED.
string mcrypt_generic(resource td, string data)
This function encrypts the plaintextNOT IMPLEMENTED.
bool mcrypt_generic_deinit(resource td)
This function terminates encrypt specified by the descriptor tdNOT IMPLEMENTED.
int mcrypt_generic_init(resource td, string key, string iv)
This function initializes all buffers for the specific moduleNOT IMPLEMENTED.
int mcrypt_get_block_size(string cipher, string module)
Get the key size of cipherNOT IMPLEMENTED.
string mcrypt_get_cipher_name(string cipher)
Get the key size of cipherNOT IMPLEMENTED.
int mcrypt_get_iv_size(string cipher, string module)
Get the IV size of cipher (Usually the same as the blocksize)NOT IMPLEMENTED.
int mcrypt_get_key_size(string cipher, string module)
Get the key size of cipherNOT IMPLEMENTED.
array mcrypt_list_algorithms([string lib_dir])
List all algorithms in "module_dir"NOT IMPLEMENTED.
array mcrypt_list_modes([string lib_dir])
List all modes "module_dir"NOT IMPLEMENTED.
bool mcrypt_module_close(resource td)
Free the descriptor tdNOT IMPLEMENTED.
int mcrypt_module_get_algo_block_size(string algorithm [, string lib_dir])
Returns the block size of the algorithmNOT IMPLEMENTED.
int mcrypt_module_get_algo_key_size(string algorithm [, string lib_dir])
Returns the maximum supported key size of the algorithmNOT IMPLEMENTED.
array mcrypt_module_get_supported_key_sizes(string algorithm [, string lib_dir])
This function decrypts the crypttextNOT IMPLEMENTED.
bool mcrypt_module_is_block_algorithm(string algorithm [, string lib_dir])
Returns TRUE if the algorithm is a block algorithmNOT IMPLEMENTED.
bool mcrypt_module_is_block_algorithm_mode(string mode [, string lib_dir])
Returns TRUE if the mode is for use with block algorithmsNOT IMPLEMENTED.
bool mcrypt_module_is_block_mode(string mode [, string lib_dir])
Returns TRUE if the mode outputs blocks of bytesNOT IMPLEMENTED.
resource mcrypt_module_open(string cipher, string cipher_directory, string mode, string mode_directory)
Opens the module of the algorithm and the mode to be usedNOT IMPLEMENTED.
bool mcrypt_module_self_test(string algorithm [, string lib_dir])
Does a self test of the module "module"NOT IMPLEMENTED.
string mcrypt_ofb(int cipher, string key, string data, int mode, string iv)
OFB crypt/decrypt data using key key with cipher cipher starting with ivNOT IMPLEMENTED.
string mdecrypt_generic(resource td, string data)
This function decrypts the plaintextNOT IMPLEMENTED.


parrot