Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
744765a9
Commit
744765a9
authored
Jun 29, 2011
by
Mans Rullgard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aes: improve test program and add fate test
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
f6252b48
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
21 deletions
+38
-21
aes.c
libavutil/aes.c
+33
-21
fate2.mak
tests/fate2.mak
+5
-0
No files found.
libavutil/aes.c
View file @
744765a9
...
@@ -203,12 +203,14 @@ int av_aes_init(AVAES *a, const uint8_t *key, int key_bits, int decrypt) {
...
@@ -203,12 +203,14 @@ int av_aes_init(AVAES *a, const uint8_t *key, int key_bits, int decrypt) {
}
}
#ifdef TEST
#ifdef TEST
#include <string.h>
#include "lfg.h"
#include "lfg.h"
#include "log.h"
#include "log.h"
int
main
(
void
){
int
main
(
int
argc
,
char
**
argv
)
{
int
i
,
j
;
int
i
,
j
;
AVAES
ae
,
ad
,
b
;
AVAES
b
;
uint8_t
rkey
[
2
][
16
]
=
{
uint8_t
rkey
[
2
][
16
]
=
{
{
0
},
{
0
},
{
0x10
,
0xa5
,
0x88
,
0x69
,
0xd7
,
0x4b
,
0xe5
,
0xa3
,
0x74
,
0xcf
,
0x86
,
0x7c
,
0xfb
,
0x47
,
0x38
,
0x59
}};
{
0x10
,
0xa5
,
0x88
,
0x69
,
0xd7
,
0x4b
,
0xe5
,
0xa3
,
0x74
,
0xcf
,
0x86
,
0x7c
,
0xfb
,
0x47
,
0x38
,
0x59
}};
...
@@ -219,37 +221,47 @@ int main(void){
...
@@ -219,37 +221,47 @@ int main(void){
{
0x73
,
0x22
,
0x81
,
0xc0
,
0xa0
,
0xaa
,
0xb8
,
0xf7
,
0xa5
,
0x4a
,
0x0c
,
0x67
,
0xa0
,
0xc4
,
0x5e
,
0xcf
},
{
0x73
,
0x22
,
0x81
,
0xc0
,
0xa0
,
0xaa
,
0xb8
,
0xf7
,
0xa5
,
0x4a
,
0x0c
,
0x67
,
0xa0
,
0xc4
,
0x5e
,
0xcf
},
{
0x6d
,
0x25
,
0x1e
,
0x69
,
0x44
,
0xb0
,
0x51
,
0xe0
,
0x4e
,
0xaa
,
0x6f
,
0xb4
,
0xdb
,
0xf7
,
0x84
,
0x65
}};
{
0x6d
,
0x25
,
0x1e
,
0x69
,
0x44
,
0xb0
,
0x51
,
0xe0
,
0x4e
,
0xaa
,
0x6f
,
0xb4
,
0xdb
,
0xf7
,
0x84
,
0x65
}};
uint8_t
temp
[
16
];
uint8_t
temp
[
16
];
AVLFG
prng
;
int
err
=
0
;
av_aes_init
(
&
ae
,
"PI=3.141592654.."
,
128
,
0
);
av_aes_init
(
&
ad
,
"PI=3.141592654.."
,
128
,
1
);
av_log_set_level
(
AV_LOG_DEBUG
);
av_log_set_level
(
AV_LOG_DEBUG
);
av_lfg_init
(
&
prng
,
1
);
for
(
i
=
0
;
i
<
2
;
i
++
){
for
(
i
=
0
;
i
<
2
;
i
++
){
av_aes_init
(
&
b
,
rkey
[
i
],
128
,
1
);
av_aes_init
(
&
b
,
rkey
[
i
],
128
,
1
);
av_aes_crypt
(
&
b
,
temp
,
rct
[
i
],
1
,
NULL
,
1
);
av_aes_crypt
(
&
b
,
temp
,
rct
[
i
],
1
,
NULL
,
1
);
for
(
j
=
0
;
j
<
16
;
j
++
)
for
(
j
=
0
;
j
<
16
;
j
++
)
if
(
rpt
[
i
][
j
]
!=
temp
[
j
])
if
(
rpt
[
i
][
j
]
!=
temp
[
j
])
{
av_log
(
NULL
,
AV_LOG_ERROR
,
"%d %02X %02X
\n
"
,
j
,
rpt
[
i
][
j
],
temp
[
j
]);
av_log
(
NULL
,
AV_LOG_ERROR
,
"%d %02X %02X
\n
"
,
j
,
rpt
[
i
][
j
],
temp
[
j
]);
err
=
1
;
}
}
}
for
(
i
=
0
;
i
<
10000
;
i
++
){
if
(
argc
>
1
&&
!
strcmp
(
argv
[
1
],
"-t"
))
{
for
(
j
=
0
;
j
<
16
;
j
++
){
AVAES
ae
,
ad
;
pt
[
j
]
=
av_lfg_get
(
&
prng
);
AVLFG
prng
;
}
{
START_TIMER
av_aes_init
(
&
ae
,
"PI=3.141592654.."
,
128
,
0
);
av_aes_crypt
(
&
ae
,
temp
,
pt
,
1
,
NULL
,
0
);
av_aes_init
(
&
ad
,
"PI=3.141592654.."
,
128
,
1
);
if
(
!
(
i
&
(
i
-
1
)))
av_lfg_init
(
&
prng
,
1
);
av_log
(
NULL
,
AV_LOG_ERROR
,
"%02X %02X %02X %02X
\n
"
,
temp
[
0
],
temp
[
5
],
temp
[
10
],
temp
[
15
]);
av_aes_crypt
(
&
ad
,
temp
,
temp
,
1
,
NULL
,
1
);
for
(
i
=
0
;
i
<
10000
;
i
++
){
STOP_TIMER
(
"aes"
)}
for
(
j
=
0
;
j
<
16
;
j
++
){
for
(
j
=
0
;
j
<
16
;
j
++
){
pt
[
j
]
=
av_lfg_get
(
&
prng
);
if
(
pt
[
j
]
!=
temp
[
j
]){
}
av_log
(
NULL
,
AV_LOG_ERROR
,
"%d %d %02X %02X
\n
"
,
i
,
j
,
pt
[
j
],
temp
[
j
]);
{
START_TIMER
;
av_aes_crypt
(
&
ae
,
temp
,
pt
,
1
,
NULL
,
0
);
if
(
!
(
i
&
(
i
-
1
)))
av_log
(
NULL
,
AV_LOG_ERROR
,
"%02X %02X %02X %02X
\n
"
,
temp
[
0
],
temp
[
5
],
temp
[
10
],
temp
[
15
]);
av_aes_crypt
(
&
ad
,
temp
,
temp
,
1
,
NULL
,
1
);
STOP_TIMER
(
"aes"
);
}
for
(
j
=
0
;
j
<
16
;
j
++
){
if
(
pt
[
j
]
!=
temp
[
j
]){
av_log
(
NULL
,
AV_LOG_ERROR
,
"%d %d %02X %02X
\n
"
,
i
,
j
,
pt
[
j
],
temp
[
j
]);
}
}
}
}
}
}
}
return
0
;
return
err
;
}
}
#endif
#endif
tests/fate2.mak
View file @
744765a9
...
@@ -222,6 +222,11 @@ fate-adler32: libavutil/adler32-test$(EXESUF)
...
@@ -222,6 +222,11 @@ fate-adler32: libavutil/adler32-test$(EXESUF)
fate-adler32: CMD = run libavutil/adler32-test
fate-adler32: CMD = run libavutil/adler32-test
fate-adler32: REF = /dev/null
fate-adler32: REF = /dev/null
FATE_TESTS += fate-aes
fate-aes: libavutil/aes-test$(EXESUF)
fate-aes: CMD = run libavutil/aes-test
fate-aes: REF = /dev/null
FATE_TESTS += fate-musepack7
FATE_TESTS += fate-musepack7
fate-musepack7: CMD = pcm -i $(SAMPLES)/musepack/inside-mp7.mpc
fate-musepack7: CMD = pcm -i $(SAMPLES)/musepack/inside-mp7.mpc
fate-musepack7: CMP = oneoff
fate-musepack7: CMP = oneoff
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment