This website works better with JavaScript.
Home
Explore
Help
Sign In
kris
/
pqc
Watch
1
Star
1
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Formatted AES code properly
master
Peter Schwabe
5 years ago
parent
070db10cc1
commit
93c24e34c6
2 changed files
with
499 additions
and
531 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+496
-528
common/aes.c
+3
-3
common/aes.h
+ 496
- 528
common/aes.c
File diff suppressed because it is too large
View File
+ 3
- 3
common/aes.h
View File
@@ -9,15 +9,15 @@
#define AESCTR_NONCEBYTES 12
typedef struct {
uint64_t sk_exp[88];
uint64_t sk_exp[88];
} aes128ctx;
typedef struct {
uint64_t sk_exp[104];
uint64_t sk_exp[104];
} aes192ctx;
typedef struct {
uint64_t sk_exp[120];
uint64_t sk_exp[120];
} aes256ctx;
Write
Preview
Loading…
Cancel
Save