Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
mbedtls
Commits
e91d01e1
Commit
e91d01e1
authored
Apr 19, 2011
by
Paul Bakker
Browse files
- Fixed typo
parent
b6ecaf52
Changes
1
Hide whitespace changes
Inline
Side-by-side
library/aes.c
View file @
e91d01e1
...
...
@@ -1090,8 +1090,11 @@ int aes_self_test( int verbose )
unsigned
char
buf
[
64
];
unsigned
char
prv
[
16
];
unsigned
char
iv
[
16
];
#if defined(POLARSSL_CIPHER_MODE_CTR) || defined(POLARSSL_CIPHER_MODE_CFB)
int
offset
;
#endif
#if defined(POLARSSL_CIPHER_MODE_CTR)
int
offset
,
len
;
int
len
;
unsigned
char
nonce_counter
[
16
];
unsigned
char
stream_block
[
16
];
#endif
...
...
@@ -1213,7 +1216,7 @@ int aes_self_test( int verbose )
if
(
verbose
!=
0
)
printf
(
"
\n
"
);
#if defined(POLARSSL_CIPHER
Y
_MODE_CFB)
#if defined(POLARSSL_CIPHER_MODE_CFB)
/*
* CFB128 mode
*/
...
...
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