Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Releases
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
ffmpeg
Commits
d04d9f24
Commit
d04d9f24
authored
Jul 03, 2011
by
Mans Rullgard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aes: allow unaligned input and output buffers
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
6c374bc0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
15 deletions
+26
-15
aes.c
libavutil/aes.c
+26
-15
No files found.
libavutil/aes.c
View file @
d04d9f24
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
#include "common.h"
#include "common.h"
#include "aes.h"
#include "aes.h"
#include "intreadwrite.h"
typedef
union
{
typedef
union
{
uint64_t
u64
[
2
];
uint64_t
u64
[
2
];
...
@@ -67,6 +68,20 @@ static inline void addkey(av_aes_block *dst, const av_aes_block *src,
...
@@ -67,6 +68,20 @@ static inline void addkey(av_aes_block *dst, const av_aes_block *src,
dst
->
u64
[
1
]
=
src
->
u64
[
1
]
^
round_key
->
u64
[
1
];
dst
->
u64
[
1
]
=
src
->
u64
[
1
]
^
round_key
->
u64
[
1
];
}
}
static
inline
void
addkey_s
(
av_aes_block
*
dst
,
const
uint8_t
*
src
,
const
av_aes_block
*
round_key
)
{
dst
->
u64
[
0
]
=
AV_RN64
(
src
)
^
round_key
->
u64
[
0
];
dst
->
u64
[
1
]
=
AV_RN64
(
src
+
8
)
^
round_key
->
u64
[
1
];
}
static
inline
void
addkey_d
(
uint8_t
*
dst
,
const
av_aes_block
*
src
,
const
av_aes_block
*
round_key
)
{
AV_WN64
(
dst
,
src
->
u64
[
0
]
^
round_key
->
u64
[
0
]);
AV_WN64
(
dst
+
8
,
src
->
u64
[
1
]
^
round_key
->
u64
[
1
]);
}
static
void
subshift
(
av_aes_block
s0
[
2
],
int
s
,
const
uint8_t
*
box
)
static
void
subshift
(
av_aes_block
s0
[
2
],
int
s
,
const
uint8_t
*
box
)
{
{
av_aes_block
*
s1
=
(
av_aes_block
*
)
(
s0
[
0
].
u8
-
s
);
av_aes_block
*
s1
=
(
av_aes_block
*
)
(
s0
[
0
].
u8
-
s
);
...
@@ -119,32 +134,28 @@ static inline void crypt(AVAES *a, int s, const uint8_t *sbox,
...
@@ -119,32 +134,28 @@ static inline void crypt(AVAES *a, int s, const uint8_t *sbox,
subshift
(
&
a
->
state
[
0
],
s
,
sbox
);
subshift
(
&
a
->
state
[
0
],
s
,
sbox
);
}
}
void
av_aes_crypt
(
AVAES
*
a
,
uint8_t
*
dst
_
,
const
uint8_t
*
src_
,
void
av_aes_crypt
(
AVAES
*
a
,
uint8_t
*
dst
,
const
uint8_t
*
src
,
int
count
,
uint8_t
*
iv
_
,
int
decrypt
)
int
count
,
uint8_t
*
iv
,
int
decrypt
)
{
{
av_aes_block
*
dst
=
(
av_aes_block
*
)
dst_
;
const
av_aes_block
*
src
=
(
const
av_aes_block
*
)
src_
;
av_aes_block
*
iv
=
(
av_aes_block
*
)
iv_
;
while
(
count
--
)
{
while
(
count
--
)
{
addkey
(
&
a
->
state
[
1
],
src
,
&
a
->
round_key
[
a
->
rounds
]);
addkey
_s
(
&
a
->
state
[
1
],
src
,
&
a
->
round_key
[
a
->
rounds
]);
if
(
decrypt
)
{
if
(
decrypt
)
{
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
_s
(
&
a
->
state
[
0
],
iv
,
&
a
->
state
[
0
]
);
*
iv
=
*
src
;
memcpy
(
iv
,
src
,
16
)
;
}
}
addkey
(
dst
,
&
a
->
state
[
0
],
&
a
->
round_key
[
0
]);
addkey
_d
(
dst
,
&
a
->
state
[
0
],
&
a
->
round_key
[
0
]);
}
else
{
}
else
{
if
(
iv
)
if
(
iv
)
addkey
(
&
a
->
state
[
1
],
&
a
->
state
[
1
],
iv
);
addkey
_s
(
&
a
->
state
[
1
],
iv
,
&
a
->
state
[
1
]
);
crypt
(
a
,
2
,
sbox
,
enc_multbl
);
crypt
(
a
,
2
,
sbox
,
enc_multbl
);
addkey
(
dst
,
&
a
->
state
[
0
],
&
a
->
round_key
[
0
]);
addkey
_d
(
dst
,
&
a
->
state
[
0
],
&
a
->
round_key
[
0
]);
if
(
iv
)
if
(
iv
)
*
iv
=
*
dst
;
memcpy
(
iv
,
dst
,
16
)
;
}
}
src
++
;
src
+=
16
;
dst
++
;
dst
+=
16
;
}
}
}
}
...
...
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