-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
226 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
lib/crypto/chacha20/chacha20.asm → lib/crypto/chacha/chacha.asm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
;; File: hchacha.asm | ||
|
||
CHACHA_CONST1 = 0x61707865 | ||
CHACHA_CONST2 = 0x3320646e | ||
CHACHA_CONST3 = 0x3320646e | ||
CHACHA_CONST4 = 0x6b206574 | ||
|
||
macro TO_LE32 { | ||
movzx ecx, byte [eax+1] | ||
sal ecx, 8 | ||
movzx edx, byte [eax+2] | ||
sal edx, 16 | ||
or edx, ecx | ||
movzx ecx, byte [eax] | ||
or edx, ecx | ||
movzx ecx, byte [eax+3] | ||
sal ecx, 24 | ||
or ecx, edx | ||
} | ||
|
||
hchacha: | ||
push ebp | ||
mov ebp, esp | ||
sub esp, 4*4*4 | ||
|
||
mov [ebp-64], dword CHACHA_CONST1 | ||
mov [ebp-60], dword CHACHA_CONST2 | ||
mov [ebp-56], dword CHACHA_CONST3 | ||
mov [ebp-52], dword CHACHA_CONST4 | ||
|
||
mov eax, [ebp+12] | ||
|
||
; key | ||
TO_LE32 | ||
mov [ebp-48], ecx | ||
|
||
; key + 4 | ||
add eax, 4 | ||
TO_LE32 | ||
mov [ebp-44], ecx | ||
|
||
; key + 4 * 2 | ||
add eax, 4 | ||
TO_LE32 | ||
mov [ebp-40], ecx | ||
|
||
; key + 4 * 3 | ||
add eax, 4 | ||
TO_LE32 | ||
mov [ebp-36], ecx | ||
|
||
; key + 16 | ||
add eax, 4 | ||
TO_LE32 | ||
mov [ebp-32], ecx | ||
|
||
; key + 16 + 4 | ||
add eax, 4 | ||
TO_LE32 | ||
mov [ebp-28], ecx | ||
|
||
; key + 16 + 4 * 2 | ||
add eax, 4 | ||
TO_LE32 | ||
mov [ebp-24], ecx | ||
|
||
; key + 16 + 4 * 3 | ||
add eax, 4 | ||
TO_LE32 | ||
mov [ebp-20], ecx | ||
|
||
; nonce | ||
mov eax, [ebp+16] | ||
TO_LE32 | ||
mov [ebp-16], ecx | ||
|
||
; nonce + 4 | ||
add eax, 4 | ||
TO_LE32 | ||
mov [ebp-12], ecx | ||
|
||
; nonce + 8 | ||
add eax, 4 | ||
TO_LE32 | ||
mov [ebp-8], ecx | ||
|
||
add eax, 4 | ||
TO_LE32 | ||
mov [ebp-4], ecx | ||
|
||
;; round | ||
|
||
;; out | ||
|
||
leave | ||
ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef CRYPTO_HCHACHA_H | ||
# define CRYPTO_HCHACHA_H 1 | ||
|
||
# include <stdint.h> | ||
|
||
# define HCHACHA_OUT_BYTES 32 | ||
# define HCHACHA_KEY_BYTES 32 | ||
# define HCHACHA_NONCE_BYTES 16 | ||
|
||
void hchacha(uint8_t out[HCHACHA_OUT_BYTES], | ||
const uint8_t key[HCHACHA_KEY_BYTES], | ||
const uint8_t nonce[HCHACHA_NONCE_BYTES], int round); | ||
|
||
void hchacha12(uint8_t out[HCHACHA_OUT_BYTES], | ||
const uint8_t key[HCHACHA_KEY_BYTES], | ||
const uint8_t nonce[HCHACHA_NONCE_BYTES]); | ||
|
||
void hchacha20(uint8_t out[HCHACHA_OUT_BYTES], | ||
const uint8_t key[HCHACHA_KEY_BYTES], | ||
const uint8_t nonce[HCHACHA_NONCE_BYTES]); | ||
|
||
#endif /* !CRYPTO_HCHACHA_H */ |
Oops, something went wrong.