aboutsummaryrefslogtreecommitdiff
path: root/openssl/src/crypto/symm_internal.rs
Commit message (Collapse)AuthorAgeFilesLines
* Remove des_cfb and des_ofb, since they appear on limit platformsCharlie Ozinga2016-04-191-2/+0
|
* Add 1DES symm ciphers (des-cbc, des-ecb, des-cfb, des-ofb)Charlie Ozinga2016-04-141-0/+5
| | | | | | 1DES is well and truly dead for actual sensitive information, (its keysize is too small for modern purposes), but it can still find use in backwards compatiblity or educational applications.
* RustfmtSteven Fackler2015-12-151-2/+2
|
* AES CFB{1,8,128} mode supportWill Tange2015-10-111-1/+7
|
* Expose EVP_BytesToKeyEdward Barnard2015-08-231-0/+26
This is based on work by pyrho. Closes #88