summaryrefslogtreecommitdiff
path: root/aes_armv4.h
diff options
context:
space:
mode:
Diffstat (limited to 'aes_armv4.h')
-rw-r--r--aes_armv4.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/aes_armv4.h b/aes_armv4.h
index 122bcab5..2c2eec72 100644
--- a/aes_armv4.h
+++ b/aes_armv4.h
@@ -18,10 +18,10 @@ extern "C" {
// Instead of AES_KEY we use a 'word32 rkey[4*15+4]'. It has space for
// both the AES_MAXNR round keys and the number of rounds in the tail.
-int AES_set_encrypt_key_ARM(const unsigned char *userKey, const int bits, unsigned int *rkey);
-int AES_set_decrypt_key_ARM(const unsigned char *userKey, const int bits, unsigned int *rkey);
-void AES_encrypt_block(const unsigned char *in, unsigned char *out, const unsigned int *rkey);
-void AES_decrypt_block(const unsigned char *in, unsigned char *out, const unsigned int *rkey);
+int cryptogams_AES_set_encrypt_key(const unsigned char *userKey, const int bits, unsigned int *rkey);
+int cryptogams_AES_set_decrypt_key(const unsigned char *userKey, const int bits, unsigned int *rkey);
+void cryptogams_AES_encrypt_block(const unsigned char *in, unsigned char *out, const unsigned int *rkey);
+void cryptogams_AES_decrypt_block(const unsigned char *in, unsigned char *out, const unsigned int *rkey);
#ifdef __cplusplus
}