summaryrefslogtreecommitdiff
path: root/aes_armv4.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-12-26 03:16:42 -0500
committerJeffrey Walton <noloader@gmail.com>2020-12-26 03:16:42 -0500
commit0e117ee65b412728519bb38b0082d153428949e4 (patch)
tree6df107cdefc63bc3acb554dfc6e092c018634ce8 /aes_armv4.h
parent8eeaab2316f65c576c60e3f5aeb42441b5a5bcdb (diff)
downloadcryptopp-git-0e117ee65b412728519bb38b0082d153428949e4.tar.gz
Consistently use cryptogams_ prefix for Andy Polyakov's code (PR #952)
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
}