| setupAESstate, aesCBCencrypt, aesCBCdecrypt - advanced encryption standard (rijndael) |
| void setupAESstate(AESstate *s, uchar key[], int keybytes, uchar *ivec) |
| void aesCBCencrypt(uchar*, int, AESstate*) |
| void aesCBCdecrypt(uchar*, int, AESstate*) |
| DES is being replaced by Rijndael, also known as AES, as the preferred |
| implement cipher block chaining encryption. |
| The initialization vector |
| bytes should random enough to be unlikely to be reused but does not need to be |
| cryptographically strongly unpredictable. |
| .B /usr/local/plan9/src/libsec |