summaryrefslogtreecommitdiff
path: root/src/KM_aes.h
diff options
context:
space:
mode:
authorJohn Hurst <jhurst@cinecert.com>2021-01-10 11:47:26 -0800
committerJohn Hurst <jhurst@cinecert.com>2021-01-10 11:47:26 -0800
commit45a0fe9c7270cd3d9bb69068e664c725857df02a (patch)
treeeb98981da9a72f24ebeccbcbd9285dfc42e1431b /src/KM_aes.h
parent1ff6109984f5c1496b84875342447fe150769197 (diff)
Altered int8 decalrations to use common asdcp typenames.
Diffstat (limited to 'src/KM_aes.h')
-rw-r--r--src/KM_aes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/KM_aes.h b/src/KM_aes.h
index 9f3aeaf..0f958cc 100644
--- a/src/KM_aes.h
+++ b/src/KM_aes.h
@@ -44,9 +44,9 @@ namespace Kumu {
ui8_t RoundKey[AES_keyExpSize];
};
- void AES_init_ctx(struct AES_ctx* ctx, const uint8_t* key);
- void AES_encrypt(const struct AES_ctx* ctx, uint8_t* buf);
- void AES_decrypt(const struct AES_ctx* ctx, uint8_t* buf);
+ void AES_init_ctx(struct AES_ctx* ctx, const ui8_t* key);
+ void AES_encrypt(const struct AES_ctx* ctx, ui8_t* buf);
+ void AES_decrypt(const struct AES_ctx* ctx, ui8_t* buf);
}; // end namespace