Openssl AES基本加解密操作
2017-11-06 本文已影响12人
CodingCode
定义密钥
这个key是由用户定义的,这里我们进行base64编码转换
$ echo -n "any_key" | openssl enc -A -base64
YW55X2tleQ==
加密
$ echo -n "mypassword" | openssl enc -aes-128-cbc -e -k "YW55X2tleQ==" | openssl enc -A -base64
U2FsdGVkX19d/UwVUwygbYdgaUoUeFz5GgL74HRgGpY=
解密
$ echo -n "U2FsdGVkX19d/UwVUwygbYdgaUoUeFz5GgL74HRgGpY=" | openssl enc -A -base64 -d | openssl enc -aes-128-cbc -d -k "YW55X2tleQ=="
mypassword
AES和RSA算法加解密的区分是,对称算法加密和解密使用相同的密码,而非对称算法加解密使用不同的密码。