summaryrefslogtreecommitdiff
path: root/libavutil/aes.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-01-15 10:37:34 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-01-15 10:37:34 +0000
commit1f83576b48fa78fa0f668a5ef9da95b5a442a582 (patch)
tree282de5623df05f0abb73d5ccf37546688252160a /libavutil/aes.c
parent9e32e071e19b30f108d8629cd4339116bd5ee0fd (diff)
make aes_en/decrypt() static until we decided on the public API
Originally committed as revision 7533 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/aes.c')
-rw-r--r--libavutil/aes.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavutil/aes.c b/libavutil/aes.c
index 7214e077ab..f183efdbcc 100644
--- a/libavutil/aes.c
+++ b/libavutil/aes.c
@@ -91,11 +91,11 @@ static inline void crypt(AVAES *a, int s, uint8_t *sbox, uint32_t *multbl){
addkey(a->state, a->round_key[0]);
}
-void av_aes_decrypt(AVAES *a){
+static void aes_decrypt(AVAES *a){
crypt(a, 0, inv_sbox, dec_multbl);
}
-void av_aes_encrypt(AVAES *a){
+static void aes_encrypt(AVAES *a){
crypt(a, 2, sbox, enc_multbl);
}
@@ -203,7 +203,7 @@ int main(){
for(i=0; i<2; i++){
av_aes_init(&b, rkey[i], 128, 1);
memcpy(b.state, rct[i], 16);
- av_aes_decrypt(&b);
+ aes_decrypt(&b);
for(j=0; j<16; j++)
if(rpt[i][j] != b.state[0][j])
av_log(NULL, AV_LOG_ERROR, "%d %02X %02X\n", j, rpt[i][j], b.state[0][j]);
@@ -215,11 +215,11 @@ int main(){
}
memcpy(ae.state, pt, 16);
{START_TIMER
- av_aes_encrypt(&ae);
+ aes_encrypt(&ae);
if(!(i&(i-1)))
av_log(NULL, AV_LOG_ERROR, "%02X %02X %02X %02X\n", ae.state[0][0], ae.state[1][1], ae.state[2][2], ae.state[3][3]);
memcpy(ad.state, ae.state, 16);
- av_aes_decrypt(&ad);
+ aes_decrypt(&ad);
STOP_TIMER("aes")}
for(j=0; j<16; j++){
if(pt[j] != ad.state[0][j]){