aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/des/rpc_enc.c
Commit message (Collapse)AuthorAgeFilesLines
* Add functions des_set_key_checked, des_set_key_unchecked.Bodo Möller1999-12-031-1/+1
| | | | | | | | | Never use des_set_key (it depends on the global variable des_check_key), but usually des_set_key_unchecked. Only destest.c bothered to look at the return values of des_set_key, but it did not set des_check_key -- if it had done so, most checks would have failed because of wrong parity and because of weak keys.
* Change type of various DES function arguments from des_cblockBodo Möller1999-05-161-3/+4
| | | | | | | | | | | | | | (meaning pointer to char) to des_cblock * (meaning pointer to array with 8 char elements), which allows the compiler to do more typechecking. (The changed argument types were of type des_cblock * back in SSLeay, and a lot of ugly casts were used then to turn them into pointers to elements; but it can be done without those casts.) Introduce new type const_des_cblock -- before, the pointers rather than the elements pointed to were declared const, and for some reason gcc did not complain about this (but some other compilers did).
* Remove NOPROTO definitions and error code comments.Ulf Möller1999-04-261-5/+0
|
* Change functions to ANSI C.Ulf Möller1999-04-191-4/+1
|
* Fix ghastly DES declarations, and all consequential warnings.Ben Laurie1999-02-131-7/+5
|
* Import of old SSLeay release: SSLeay 0.9.0bRalf S. Engelschall1998-12-211-1/+1
|
* Import of old SSLeay release: SSLeay 0.8.1bRalf S. Engelschall1998-12-211-0/+107