Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@chromium.org>2015-02-14 00:16:59 +0300
committerAdam Langley <agl@chromium.org>2015-02-14 00:16:59 +0300
commit26c2b929ba8d298950c502d0cf3af7f08a94d853 (patch)
tree51ec00723dedaf22bf1189572d144374369d641d
parentd306f165a462f47c2c0e8f3a0f2b4ae6950f70ed (diff)
Switch nonce type in chacha_vec.c to uint32_t.
This was suggested in https://boringssl-review.googlesource.com/#/c/3460 but I forgot to upload the change before submitting in Gerrit. Change-Id: I3a333fe2e8880603a9027638dd013f21d8270638
-rw-r--r--crypto/chacha/chacha_vec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/chacha/chacha_vec.c b/crypto/chacha/chacha_vec.c
index b3f425f0..14b54a70 100644
--- a/crypto/chacha/chacha_vec.c
+++ b/crypto/chacha/chacha_vec.c
@@ -159,7 +159,7 @@ void CRYPTO_chacha_20(
{
unsigned iters, i, *op=(unsigned *)out, *ip=(unsigned *)in, *kp;
#if defined(__ARM_NEON__)
- unsigned np[2];
+ uint32_t np[2];
uint8_t alignment_buffer[16] __attribute__((aligned(16)));
#endif
vec s0, s1, s2, s3;