blob: 27ee5675195b7917eeba600ae0a760aeb425c6f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* lib/crypto/openssl/aes/aescrypt.c
*/
#include "aesopt.h"
aes_rval aes_dec_blk(const unsigned char in_blk[], unsigned char out_blk[], const aes_ctx cx[1])
{
return aes_bad;
}
aes_rval aes_enc_blk(const unsigned char in_blk[], unsigned char out_blk[], const aes_ctx cx[1])
{
return aes_bad;
}
|