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
af2ea724
Commit
af2ea724
authored
Jul 02, 2011
by
Mans Rullgard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aes: use direct assignments instead of memcpy() or loops
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
5dd045eb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
aes.c
libavutil/aes.c
+5
-6
No files found.
libavutil/aes.c
View file @
af2ea724
...
@@ -127,7 +127,7 @@ void av_aes_crypt(AVAES *a, uint8_t *dst_, const uint8_t *src_,
...
@@ -127,7 +127,7 @@ void av_aes_crypt(AVAES *a, uint8_t *dst_, const uint8_t *src_,
crypt
(
a
,
0
,
inv_sbox
,
dec_multbl
);
crypt
(
a
,
0
,
inv_sbox
,
dec_multbl
);
if
(
iv
)
{
if
(
iv
)
{
addkey
(
&
a
->
state
[
0
],
&
a
->
state
[
0
],
iv
);
addkey
(
&
a
->
state
[
0
],
&
a
->
state
[
0
],
iv
);
memcpy
(
iv
,
src
,
16
)
;
*
iv
=
*
src
;
}
}
addkey
(
dst
,
&
a
->
state
[
0
],
&
a
->
round_key
[
0
]);
addkey
(
dst
,
&
a
->
state
[
0
],
&
a
->
round_key
[
0
]);
}
else
{
}
else
{
...
@@ -136,7 +136,7 @@ void av_aes_crypt(AVAES *a, uint8_t *dst_, const uint8_t *src_,
...
@@ -136,7 +136,7 @@ void av_aes_crypt(AVAES *a, uint8_t *dst_, const uint8_t *src_,
crypt
(
a
,
2
,
sbox
,
enc_multbl
);
crypt
(
a
,
2
,
sbox
,
enc_multbl
);
addkey
(
dst
,
&
a
->
state
[
0
],
&
a
->
round_key
[
0
]);
addkey
(
dst
,
&
a
->
state
[
0
],
&
a
->
round_key
[
0
]);
if
(
iv
)
if
(
iv
)
memcpy
(
iv
,
dst
,
16
)
;
*
iv
=
*
dst
;
}
}
src
++
;
src
++
;
dst
++
;
dst
++
;
...
@@ -221,15 +221,14 @@ int av_aes_init(AVAES *a, const uint8_t *key, int key_bits, int decrypt)
...
@@ -221,15 +221,14 @@ int av_aes_init(AVAES *a, const uint8_t *key, int key_bits, int decrypt)
if
(
decrypt
)
{
if
(
decrypt
)
{
for
(
i
=
1
;
i
<
rounds
;
i
++
)
{
for
(
i
=
1
;
i
<
rounds
;
i
++
)
{
av_aes_block
tmp
[
3
];
av_aes_block
tmp
[
3
];
memcpy
(
&
tmp
[
2
],
&
a
->
round_key
[
i
],
16
)
;
tmp
[
2
]
=
a
->
round_key
[
i
]
;
subshift
(
&
tmp
[
1
],
0
,
sbox
);
subshift
(
&
tmp
[
1
],
0
,
sbox
);
mix
(
tmp
,
dec_multbl
,
1
,
3
);
mix
(
tmp
,
dec_multbl
,
1
,
3
);
memcpy
(
&
a
->
round_key
[
i
],
&
tmp
[
0
],
16
)
;
a
->
round_key
[
i
]
=
tmp
[
0
]
;
}
}
}
else
{
}
else
{
for
(
i
=
0
;
i
<
(
rounds
+
1
)
>>
1
;
i
++
)
{
for
(
i
=
0
;
i
<
(
rounds
+
1
)
>>
1
;
i
++
)
{
for
(
j
=
0
;
j
<
16
;
j
++
)
FFSWAP
(
av_aes_block
,
a
->
round_key
[
i
],
a
->
round_key
[
rounds
-
i
]);
FFSWAP
(
int
,
a
->
round_key
[
i
].
u8
[
j
],
a
->
round_key
[
rounds
-
i
].
u8
[
j
]);
}
}
}
}
...
...
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