summaryrefslogtreecommitdiff
path: root/aes_armv4.h
diff options
context:
space:
mode:
authorSergiu Giurgiu <sgiurgiu11@gmail.com>2020-06-03 21:03:18 -0400
committerGitHub <noreply@github.com>2020-06-03 21:03:18 -0400
commit818f1ca944ad6c5d6d7aaebbaf83411991471891 (patch)
tree8ea50908b705dbf9c316577f34b91afb02da75f2 /aes_armv4.h
parentb30600683178f613de9f72071d5d61bbb7ba0e0e (diff)
downloadcryptopp-git-818f1ca944ad6c5d6d7aaebbaf83411991471891.tar.gz
Fix conflicting Cryptogams API names on ARM with OpenSSL (GH #952)
Diffstat (limited to 'aes_armv4.h')
-rw-r--r--aes_armv4.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/aes_armv4.h b/aes_armv4.h
index 850526d7..122bcab5 100644
--- a/aes_armv4.h
+++ b/aes_armv4.h
@@ -18,8 +18,8 @@ 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(const unsigned char *userKey, const int bits, unsigned int *rkey);
-int AES_set_decrypt_key(const unsigned char *userKey, const int bits, unsigned int *rkey);
+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);