encryption - Get list of PHP openssl_encrypt methods / modes -


i starting use php's openssl_encrypt method. second argument encryption mode. can find list of possible methods / modes?

while the manual scarce, looks can use openssl_get_cipher_methods() return array of available cipher methods:

print_r(openssl_get_cipher_methods()); 

the true argument return aliases them, might more recognisable, e.g. blowfish, des3 etc. see manual example.


Comments

Popular posts from this blog

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

javascript - Using jquery append to add option values into a select element not working -

javascript - Restarting Supervisor and effect on FlaskSocketIO -