-
Notifications
You must be signed in to change notification settings - Fork 463
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'open-quantum-safe:main' into pr_shan_error_handling
- Loading branch information
Showing
5 changed files
with
83 additions
and
10 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
72 changes: 72 additions & 0 deletions
72
scripts/copy_from_upstream/patches/pqclean-kyber-armneon-asan.patch
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,72 @@ | ||
diff --git a/crypto_kem/kyber1024/aarch64/neon_symmetric-shake.c b/crypto_kem/kyber1024/aarch64/neon_symmetric-shake.c | ||
index 8aced5e4..364d9fdd 100644 | ||
--- a/crypto_kem/kyber1024/aarch64/neon_symmetric-shake.c | ||
+++ b/crypto_kem/kyber1024/aarch64/neon_symmetric-shake.c | ||
@@ -56,8 +56,8 @@ void neon_kyber_shake128_absorb(keccakx2_state *state, | ||
uint8_t y1, uint8_t y2) | ||
{ | ||
unsigned int i; | ||
- uint8_t extseed1[KYBER_SYMBYTES+2]; | ||
- uint8_t extseed2[KYBER_SYMBYTES+2]; | ||
+ uint8_t extseed1[KYBER_SYMBYTES+2+6]; | ||
+ uint8_t extseed2[KYBER_SYMBYTES+2+6]; | ||
|
||
for(i=0;i<KYBER_SYMBYTES;i++){ | ||
extseed1[i] = seed[i]; | ||
@@ -69,7 +69,7 @@ void neon_kyber_shake128_absorb(keccakx2_state *state, | ||
extseed2[KYBER_SYMBYTES ] = x2; | ||
extseed2[KYBER_SYMBYTES+1] = y2; | ||
|
||
- shake128x2_absorb(state, extseed1, extseed2, sizeof(extseed1)); | ||
+ shake128x2_absorb(state, extseed1, extseed2, KYBER_SYMBYTES+2); | ||
} | ||
|
||
/************************************************* | ||
diff --git a/crypto_kem/kyber512/aarch64/neon_symmetric-shake.c b/crypto_kem/kyber512/aarch64/neon_symmetric-shake.c | ||
index 8aced5e4..364d9fdd 100644 | ||
--- a/crypto_kem/kyber512/aarch64/neon_symmetric-shake.c | ||
+++ b/crypto_kem/kyber512/aarch64/neon_symmetric-shake.c | ||
@@ -56,8 +56,8 @@ void neon_kyber_shake128_absorb(keccakx2_state *state, | ||
uint8_t y1, uint8_t y2) | ||
{ | ||
unsigned int i; | ||
- uint8_t extseed1[KYBER_SYMBYTES+2]; | ||
- uint8_t extseed2[KYBER_SYMBYTES+2]; | ||
+ uint8_t extseed1[KYBER_SYMBYTES+2+6]; | ||
+ uint8_t extseed2[KYBER_SYMBYTES+2+6]; | ||
|
||
for(i=0;i<KYBER_SYMBYTES;i++){ | ||
extseed1[i] = seed[i]; | ||
@@ -69,7 +69,7 @@ void neon_kyber_shake128_absorb(keccakx2_state *state, | ||
extseed2[KYBER_SYMBYTES ] = x2; | ||
extseed2[KYBER_SYMBYTES+1] = y2; | ||
|
||
- shake128x2_absorb(state, extseed1, extseed2, sizeof(extseed1)); | ||
+ shake128x2_absorb(state, extseed1, extseed2, KYBER_SYMBYTES+2); | ||
} | ||
|
||
/************************************************* | ||
diff --git a/crypto_kem/kyber768/aarch64/neon_symmetric-shake.c b/crypto_kem/kyber768/aarch64/neon_symmetric-shake.c | ||
index 8aced5e4..364d9fdd 100644 | ||
--- a/crypto_kem/kyber768/aarch64/neon_symmetric-shake.c | ||
+++ b/crypto_kem/kyber768/aarch64/neon_symmetric-shake.c | ||
@@ -56,8 +56,8 @@ void neon_kyber_shake128_absorb(keccakx2_state *state, | ||
uint8_t y1, uint8_t y2) | ||
{ | ||
unsigned int i; | ||
- uint8_t extseed1[KYBER_SYMBYTES+2]; | ||
- uint8_t extseed2[KYBER_SYMBYTES+2]; | ||
+ uint8_t extseed1[KYBER_SYMBYTES+2+6]; | ||
+ uint8_t extseed2[KYBER_SYMBYTES+2+6]; | ||
|
||
for(i=0;i<KYBER_SYMBYTES;i++){ | ||
extseed1[i] = seed[i]; | ||
@@ -69,7 +69,7 @@ void neon_kyber_shake128_absorb(keccakx2_state *state, | ||
extseed2[KYBER_SYMBYTES ] = x2; | ||
extseed2[KYBER_SYMBYTES+1] = y2; | ||
|
||
- shake128x2_absorb(state, extseed1, extseed2, sizeof(extseed1)); | ||
+ shake128x2_absorb(state, extseed1, extseed2, KYBER_SYMBYTES+2); | ||
} | ||
|
||
/************************************************* |
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