我开始使用PHP的openssl_encrypt
方法。第二个参数是加密模式。我在哪里可以找到所有可能的方法/模式的列表?
答案 0 :(得分:4)
the manual is scarce,看起来您可以使用openssl_get_cipher_methods()
返回一系列可用的密码方法:
print_r(openssl_get_cipher_methods());
true
参数将为它们返回别名,这可能更容易识别,例如blowfish
,des3
等。请参阅手册以获取示例。