File indexing completed on 2025-01-18 09:54:53
0001
0002
0003
0004
0005 #ifndef CRYPTOGAMS_AES_ARMV4_H
0006 #define CRYPTOGAMS_AES_ARMV4_H
0007
0008 #ifdef __cplusplus
0009 extern "C" {
0010 #endif
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021 int cryptogams_AES_set_encrypt_key(const unsigned char *userKey, const int bits, unsigned int *rkey);
0022 int cryptogams_AES_set_decrypt_key(const unsigned char *userKey, const int bits, unsigned int *rkey);
0023 void cryptogams_AES_encrypt_block(const unsigned char *in, unsigned char *out, const unsigned int *rkey);
0024 void cryptogams_AES_decrypt_block(const unsigned char *in, unsigned char *out, const unsigned int *rkey);
0025
0026 #ifdef __cplusplus
0027 }
0028 #endif
0029
0030 #endif