5#ifndef CRYPTOGAMS_AES_ARMV4_H
6#define CRYPTOGAMS_AES_ARMV4_H
21int cryptogams_AES_set_encrypt_key(
const unsigned char *userKey,
const int bits,
unsigned int *rkey);
22int cryptogams_AES_set_decrypt_key(
const unsigned char *userKey,
const int bits,
unsigned int *rkey);
23void cryptogams_AES_encrypt_block(
const unsigned char *in,
unsigned char *out,
const unsigned int *rkey);
24void cryptogams_AES_decrypt_block(
const unsigned char *in,
unsigned char *out,
const unsigned int *rkey);