diff options
author | mischief <mischief@offblast.org> | 2014-02-25 17:37:59 -0800 |
---|---|---|
committer | mischief <mischief@offblast.org> | 2014-02-25 17:37:59 -0800 |
commit | 99f9a601781d6ff26d09fbedb47a0043fff08323 (patch) | |
tree | ee066ee9b5c73635e7b109cf7f624634373e35c3 /sys/man | |
parent | 774ccb19e4a29850f675c339e4ba7f5a8dbb48d8 (diff) |
libsec: add aes_128_cbc and aes_256_cbc ciphers
Diffstat (limited to 'sys/man')
-rw-r--r-- | sys/man/3/tls | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/man/3/tls b/sys/man/3/tls index 99f470d90..8f5a30ec2 100644 --- a/sys/man/3/tls +++ b/sys/man/3/tls @@ -258,9 +258,11 @@ This will always include .BR clear , meaning no encryption or digesting. Currently implemented encryption algorithms are -.B 'rc4_128' +.B 'rc4_128', +.BR '3des_ede_cbc', +.BR 'aes_128_cbc', and -.BR '3des_ede_cbc' . +.BR 'aes_256_cbc'. Currently implemented hashing algorithms are .B 'md5' and |