瀏覽代碼

Formatted AES code properly

tags/v0.0.1
Peter Schwabe 5 年之前
父節點
當前提交
93c24e34c6
共有 2 個文件被更改,包括 499 次插入531 次删除
  1. +496
    -528
      common/aes.c
  2. +3
    -3
      common/aes.h

+ 496
- 528
common/aes.c
文件差異過大導致無法顯示
查看文件


+ 3
- 3
common/aes.h 查看文件

@@ -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;




Loading…
取消
儲存