-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkex.c
502 lines (410 loc) · 19 KB
/
kex.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
/****************************************************************************************
* LatticeCrypto: an efficient post-quantum Ring-Learning With Errors cryptography library
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*
* Abstract: Ring-LWE key exchange
* The implementation is based on the instantiation of Peikert's key exchange [1]
* due to Alkim, Ducas, Poppelmann and Schwabe [2].
*
* [1] C. Peikert, "Lattice cryptography for the internet", in Post-Quantum Cryptography -
* 6th International Workshop (PQCrypto 2014), LNCS 8772, pp. 197-219. Springer, 2014.
* [2] E. Alkim, L. Ducas, T. Pöppelmann and P. Schwabe, "Post-quantum key exchange - a new
* hope", IACR Cryptology ePrint Archive, Report 2015/1092, 2015.
*
******************************************************************************************/
#include "LatticeCrypto_priv.h"
#include <malloc.h>
extern const int32_t psi_rev_ntt1024_12289[1024];
extern const int32_t omegainv_rev_ntt1024_12289[1024];
extern const int32_t omegainv10N_rev_ntt1024_12289;
extern const int32_t Ninv11_ntt1024_12289;
__inline void clear_words(void* mem, digit_t nwords)
{ // Clear digits from memory. "nwords" indicates the number of digits to be zeroed.
// This function uses the volatile type qualifier to inform the compiler not to optimize out the memory clearing.
unsigned int i;
volatile digit_t *v = mem;
for (i = 0; i < nwords; i++) {
v[i] = 0;
}
}
CRYPTO_STATUS LatticeCrypto_initialize(PLatticeCryptoStruct pLatticeCrypto, RandomBytes RandomBytesFunction, ExtendableOutput ExtendableOutputFunction, StreamOutput StreamOutputFunction)
{ // Initialize structure pLatticeCrypto with user-provided functions: RandomBytesFunction, ExtendableOutputFunction and StreamOutputFunction.
pLatticeCrypto->RandomBytesFunction = RandomBytesFunction;
pLatticeCrypto->ExtendableOutputFunction = ExtendableOutputFunction;
pLatticeCrypto->StreamOutputFunction = StreamOutputFunction;
return CRYPTO_SUCCESS;
}
PLatticeCryptoStruct LatticeCrypto_allocate()
{ // Dynamic allocation of memory for LatticeCrypto structure. It should be called before initialization with LatticeCrypto_initialize().
// Returns NULL on error.
PLatticeCryptoStruct LatticeCrypto = NULL;
LatticeCrypto = (PLatticeCryptoStruct)calloc(1, sizeof(LatticeCryptoStruct));
if (LatticeCrypto == NULL) {
return NULL;
}
return LatticeCrypto;
}
const char* LatticeCrypto_get_error_message(CRYPTO_STATUS Status)
{ // Output error/success message for a given CRYPTO_STATUS
struct error_mapping {
unsigned int index;
char* string;
} mapping[CRYPTO_STATUS_TYPE_SIZE] = {
{CRYPTO_SUCCESS, CRYPTO_MSG_SUCCESS},
{CRYPTO_ERROR, CRYPTO_MSG_ERROR},
{CRYPTO_ERROR_DURING_TEST, CRYPTO_MSG_ERROR_DURING_TEST},
{CRYPTO_ERROR_UNKNOWN, CRYPTO_MSG_ERROR_UNKNOWN},
{CRYPTO_ERROR_NOT_IMPLEMENTED, CRYPTO_MSG_ERROR_NOT_IMPLEMENTED},
{CRYPTO_ERROR_NO_MEMORY, CRYPTO_MSG_ERROR_NO_MEMORY},
{CRYPTO_ERROR_INVALID_PARAMETER, CRYPTO_MSG_ERROR_INVALID_PARAMETER},
{CRYPTO_ERROR_SHARED_KEY, CRYPTO_MSG_ERROR_SHARED_KEY},
{CRYPTO_ERROR_TOO_MANY_ITERATIONS, CRYPTO_MSG_ERROR_TOO_MANY_ITERATIONS}
};
if (Status >= CRYPTO_STATUS_TYPE_SIZE || mapping[Status].string == NULL) {
return "Unrecognized CRYPTO_STATUS";
} else {
return mapping[Status].string;
}
};
void encode_A(const uint32_t* pk, const unsigned char* seed, unsigned char* m)
{ // Alice's message encoding
unsigned int i = 0, j;
#if defined(GENERIC_IMPLEMENTATION)
for (j = 0; j < 1024; j += 4) {
m[i] = (unsigned char)(pk[j] & 0xFF);
m[i+1] = (unsigned char)((pk[j] >> 8) | ((pk[j+1] & 0x03) << 6));
m[i+2] = (unsigned char)((pk[j+1] >> 2) & 0xFF);
m[i+3] = (unsigned char)((pk[j+1] >> 10) | ((pk[j+2] & 0x0F) << 4));
m[i+4] = (unsigned char)((pk[j+2] >> 4) & 0xFF);
m[i+5] = (unsigned char)((pk[j+2] >> 12) | ((pk[j+3] & 0x3F) << 2));
m[i+6] = (unsigned char)(pk[j+3] >> 6);
i += 7;
}
#elif defined(ASM_SUPPORT) && (SIMD_SUPPORT == AVX2_SUPPORT)
encode_asm(pk, m);
i = 1792;
#endif
for (j = 0; j < 32; j++) {
m[i+j] = seed[j];
}
}
void decode_A(const unsigned char* m, uint32_t *pk, unsigned char* seed)
{ // Alice's message decoding
unsigned int i = 0, j;
#if defined(GENERIC_IMPLEMENTATION)
for (j = 0; j < 1024; j += 4) {
pk[j] = ((uint32_t)m[i] | (((uint32_t)m[i+1] & 0x3F) << 8));
pk[j+1] = (((uint32_t)m[i+1] >> 6) | ((uint32_t)m[i+2] << 2) | (((uint32_t)m[i+3] & 0x0F) << 10));
pk[j+2] = (((uint32_t)m[i+3] >> 4) | ((uint32_t)m[i+4] << 4) | (((uint32_t)m[i+5] & 0x03) << 12));
pk[j+3] = (((uint32_t)m[i+5] >> 2) | ((uint32_t)m[i+6] << 6));
i += 7;
}
#elif defined(ASM_SUPPORT) && (SIMD_SUPPORT == AVX2_SUPPORT)
decode_asm(m, pk);
i = 1792;
#endif
for (j = 0; j < 32; j++) {
seed[j] = m[i+j];
}
}
void encode_B(const uint32_t* pk, const uint32_t* rvec, unsigned char* m)
{ // Bob's message encoding
unsigned int i = 0, j;
#if defined(GENERIC_IMPLEMENTATION)
for (j = 0; j < 1024; j += 4) {
m[i] = (unsigned char)(pk[j] & 0xFF);
m[i+1] = (unsigned char)((pk[j] >> 8) | ((pk[j+1] & 0x03) << 6));
m[i+2] = (unsigned char)((pk[j+1] >> 2) & 0xFF);
m[i+3] = (unsigned char)((pk[j+1] >> 10) | ((pk[j+2] & 0x0F) << 4));
m[i+4] = (unsigned char)((pk[j+2] >> 4) & 0xFF);
m[i+5] = (unsigned char)((pk[j+2] >> 12) | ((pk[j+3] & 0x3F) << 2));
m[i+6] = (unsigned char)(pk[j+3] >> 6);
i += 7;
}
#elif defined(ASM_SUPPORT) && (SIMD_SUPPORT == AVX2_SUPPORT)
encode_asm(pk, m);
#endif
i = 0;
for (j = 0; j < 1024/4; j++) {
m[1792+j] = (unsigned char)(rvec[i] | (rvec[i+1] << 2) | (rvec[i+2] << 4) | (rvec[i+3] << 6));
i += 4;
}
}
void decode_B(unsigned char* m, uint32_t* pk, uint32_t* rvec)
{ // Bob's message decoding
unsigned int i = 0, j;
#if defined(GENERIC_IMPLEMENTATION)
for (j = 0; j < 1024; j += 4) {
pk[j] = ((uint32_t)m[i] | (((uint32_t)m[i+1] & 0x3F) << 8));
pk[j+1] = (((uint32_t)m[i+1] >> 6) | ((uint32_t)m[i+2] << 2) | (((uint32_t)m[i+3] & 0x0F) << 10));
pk[j+2] = (((uint32_t)m[i+3] >> 4) | ((uint32_t)m[i+4] << 4) | (((uint32_t)m[i+5] & 0x03) << 12));
pk[j+3] = (((uint32_t)m[i+5] >> 2) | ((uint32_t)m[i+6] << 6));
i += 7;
}
#elif defined(ASM_SUPPORT) && (SIMD_SUPPORT == AVX2_SUPPORT)
decode_asm(m, pk);
i = 1792;
#endif
i = 0;
for (j = 0; j < 1024/4; j++) {
rvec[i] = (uint32_t)(m[1792+j] & 0x03);
rvec[i+1] = (uint32_t)((m[1792+j] >> 2) & 0x03);
rvec[i+2] = (uint32_t)((m[1792+j] >> 4) & 0x03);
rvec[i+3] = (uint32_t)(m[1792+j] >> 6);
i += 4;
}
}
static __inline uint32_t Abs(int32_t value)
{ // Compute absolute value
uint32_t mask;
mask = (uint32_t)(value >> 31);
return ((mask ^ value) - mask);
}
CRYPTO_STATUS HelpRec(const uint32_t* x, uint32_t* rvec, const unsigned char* seed, unsigned int nonce, StreamOutput StreamOutputFunction)
{ // Reconciliation helper
unsigned int i, j, norm;
unsigned char bit, random_bits[32], nce[8] = {0};
uint32_t v0[4], v1[4];
CRYPTO_STATUS Status = CRYPTO_ERROR_UNKNOWN;
nce[1] = (unsigned char)nonce;
Status = stream_output(seed, ERROR_SEED_BYTES, nce, NONCE_SEED_BYTES, 32, random_bits, StreamOutputFunction);
if (Status != CRYPTO_SUCCESS) {
clear_words((void*)random_bits, NBYTES_TO_NWORDS(32));
return Status;
}
#if defined(ASM_SUPPORT) && (SIMD_SUPPORT == AVX2_SUPPORT)
helprec_asm(x, rvec, random_bits);
#else
for (i = 0; i < 256; i++) {
bit = 1 & (random_bits[i >> 3] >> (i & 0x07));
rvec[i] = (x[i] << 1) - bit;
rvec[i+256] = (x[i+256] << 1) - bit;
rvec[i+512] = (x[i+512] << 1) - bit;
rvec[i+768] = (x[i+768] << 1) - bit;
norm = 0;
v0[0] = 4; v0[1] = 4; v0[2] = 4; v0[3] = 4;
v1[0] = 3; v1[1] = 3; v1[2] = 3; v1[3] = 3;
for (j = 0; j < 4; j++) {
v0[j] -= (rvec[i+256*j] - PARAMETER_Q4 ) >> 31;
v0[j] -= (rvec[i+256*j] - PARAMETER_3Q4) >> 31;
v0[j] -= (rvec[i+256*j] - PARAMETER_5Q4) >> 31;
v0[j] -= (rvec[i+256*j] - PARAMETER_7Q4) >> 31;
v1[j] -= (rvec[i+256*j] - PARAMETER_Q2 ) >> 31;
v1[j] -= (rvec[i+256*j] - PARAMETER_Q ) >> 31;
v1[j] -= (rvec[i+256*j] - PARAMETER_3Q2) >> 31;
norm += Abs(2*rvec[i+256*j] - PARAMETER_Q*v0[j]);
}
norm = (uint32_t)((int32_t)(norm - PARAMETER_Q) >> 31); // If norm < q then norm = 0xff...ff, else norm = 0
v0[0] = (norm & (v0[0] ^ v1[0])) ^ v1[0];
v0[1] = (norm & (v0[1] ^ v1[1])) ^ v1[1];
v0[2] = (norm & (v0[2] ^ v1[2])) ^ v1[2];
v0[3] = (norm & (v0[3] ^ v1[3])) ^ v1[3];
rvec[i] = (v0[0] - v0[3]) & 0x03;
rvec[i+256] = (v0[1] - v0[3]) & 0x03;
rvec[i+512] = (v0[2] - v0[3]) & 0x03;
rvec[i+768] = ((v0[3] << 1) + (1 & ~norm)) & 0x03;
}
#endif
return Status;
}
static __inline uint32_t LDDecode(int32_t* t)
{ // Low-density decoding
unsigned int i, norm = 0;
uint32_t mask1, mask2, value;
int32_t cneg = -8*PARAMETER_Q;
for (i = 0; i < 4; i++) {
mask1 = t[i] >> 31; // If t[i] < 0 then mask2 = 0xff...ff, else mask2 = 0
mask2 = (4*PARAMETER_Q - (int32_t)Abs(t[i])) >> 31; // If 4*PARAMETER_Q > Abs(t[i]) then mask2 = 0, else mask2 = 0xff...ff
value = ((mask1 & (8*PARAMETER_Q ^ cneg)) ^ cneg);
norm += Abs(t[i] + (mask2 & value));
}
return ((8*PARAMETER_Q - norm) >> 31) ^ 1; // If norm < PARAMETER_Q then return 1, else return 0
};
void Rec(const uint32_t *x, const uint32_t* rvec, unsigned char *key)
{ // Reconciliation
#if defined(GENERIC_IMPLEMENTATION)
unsigned int i;
uint32_t t[4];
for (i = 0; i < 32; i++) {
key[i] = 0;
}
for (i = 0; i < 256; i++) {
t[0] = 8*x[i] - (2*rvec[i] + rvec[i+768]) * PARAMETER_Q;
t[1] = 8*x[i+256] - (2*rvec[i+256] + rvec[i+768]) * PARAMETER_Q;
t[2] = 8*x[i+512] - (2*rvec[i+512] + rvec[i+768]) * PARAMETER_Q;
t[3] = 8*x[i+768] - (rvec[i+768]) * PARAMETER_Q;
key[i >> 3] |= (unsigned char)LDDecode((int32_t*)t) << (i & 0x07);
}
#elif defined(ASM_SUPPORT) && (SIMD_SUPPORT == AVX2_SUPPORT)
rec_asm(x, rvec, key);
#endif
}
CRYPTO_STATUS get_error(int32_t* e, unsigned char* seed, unsigned int nonce, StreamOutput StreamOutputFunction)
{ // Error sampling
unsigned char stream[3*PARAMETER_N];
uint32_t* pstream = (uint32_t*)&stream;
uint32_t acc1, acc2, temp;
uint8_t *pacc1 = (uint8_t*)&acc1, *pacc2 = (uint8_t*)&acc2;
unsigned char nce[8] = {0};
unsigned int i, j;
CRYPTO_STATUS Status = CRYPTO_ERROR_UNKNOWN;
nce[0] = (unsigned char)nonce;
Status = stream_output(seed, ERROR_SEED_BYTES, nce, NONCE_SEED_BYTES, 3*PARAMETER_N, stream, StreamOutputFunction);
if (Status != CRYPTO_SUCCESS) {
clear_words((void*)stream, NBYTES_TO_NWORDS(3*PARAMETER_N));
return Status;
}
#if defined(ASM_SUPPORT) && (SIMD_SUPPORT == AVX2_SUPPORT)
error_sampling_asm(stream, e);
#else
for (i = 0; i < PARAMETER_N/4; i++)
{
acc1 = 0;
acc2 = 0;
for (j = 0; j < 8; j++) {
acc1 += (pstream[i] >> j) & 0x01010101;
acc2 += (pstream[i+PARAMETER_N/4] >> j) & 0x01010101;
}
for (j = 0; j < 4; j++) {
temp = pstream[i+2*PARAMETER_N/4] >> j;
acc1 += temp & 0x01010101;
acc2 += (temp >> 4) & 0x01010101;
}
e[2*i] = pacc1[0] - pacc1[1];
e[2*i+1] = pacc1[2] - pacc1[3];
e[2*i+PARAMETER_N/2] = pacc2[0] - pacc2[1];
e[2*i+PARAMETER_N/2+1] = pacc2[2] - pacc2[3];
}
#endif
return Status;
}
CRYPTO_STATUS generate_a(uint32_t* a, const unsigned char* seed, ExtendableOutput ExtendableOutputFunction)
{ // Generation of parameter a
return extended_output(seed, SEED_BYTES, PARAMETER_N, a, ExtendableOutputFunction);
}
CRYPTO_STATUS KeyGeneration_A(int32_t* SecretKeyA, unsigned char* PublicKeyA, PLatticeCryptoStruct pLatticeCrypto)
{ // Alice's key generation
// It produces a private key SecretKeyA and computes the public key PublicKeyA.
// Outputs: the private key SecretKeyA that consists of a 32-bit signed 1024-element array (4096 bytes in total)
// the public key PublicKeyA that occupies 1824 bytes
// pLatticeCrypto must be set up in advance using LatticeCrypto_initialize().
uint32_t a[PARAMETER_N];
int32_t e[PARAMETER_N];
unsigned char seed[SEED_BYTES], error_seed[ERROR_SEED_BYTES];
CRYPTO_STATUS Status = CRYPTO_ERROR_UNKNOWN;
Status = random_bytes(SEED_BYTES, seed, pLatticeCrypto->RandomBytesFunction);
if (Status != CRYPTO_SUCCESS) {
return Status;
}
Status = random_bytes(ERROR_SEED_BYTES, error_seed, pLatticeCrypto->RandomBytesFunction);
if (Status != CRYPTO_SUCCESS) {
goto cleanup;
}
Status = generate_a(a, seed, pLatticeCrypto->ExtendableOutputFunction);
if (Status != CRYPTO_SUCCESS) {
goto cleanup;
}
Status = get_error(SecretKeyA, error_seed, 0, pLatticeCrypto->StreamOutputFunction);
if (Status != CRYPTO_SUCCESS) {
goto cleanup;
}
Status = get_error(e, error_seed, 1, pLatticeCrypto->StreamOutputFunction);
if (Status != CRYPTO_SUCCESS) {
goto cleanup;
}
NTT_CT_std2rev_12289(SecretKeyA, psi_rev_ntt1024_12289, PARAMETER_N);
NTT_CT_std2rev_12289(e, psi_rev_ntt1024_12289, PARAMETER_N);
smul(e, 3, PARAMETER_N);
pmuladd((int32_t*)a, SecretKeyA, e, (int32_t*)a, PARAMETER_N);
correction((int32_t*)a, PARAMETER_Q, PARAMETER_N);
encode_A(a, seed, PublicKeyA);
cleanup:
clear_words((void*)e, NBYTES_TO_NWORDS(4*PARAMETER_N));
clear_words((void*)error_seed, NBYTES_TO_NWORDS(ERROR_SEED_BYTES));
return Status;
}
CRYPTO_STATUS SecretAgreement_B(unsigned char* PublicKeyA, unsigned char* SharedSecretB, unsigned char* PublicKeyB, PLatticeCryptoStruct pLatticeCrypto)
{ // Bob's key generation and shared secret computation
// It produces a private key and computes the public key PublicKeyB. In combination with Alice's public key PublicKeyA, it computes
// the shared secret SharedSecretB.
// Input: Alice's public key PublicKeyA that consists of 1824 bytes
// Outputs: the public key PublicKeyB that occupies 2048 bytes.
// the 256-bit shared secret SharedSecretB.
// pLatticeCrypto must be set up in advance using LatticeCrypto_initialize().
uint32_t pk_A[PARAMETER_N], a[PARAMETER_N], v[PARAMETER_N], r[PARAMETER_N];
int32_t sk_B[PARAMETER_N], e[PARAMETER_N];
unsigned char seed[SEED_BYTES], error_seed[ERROR_SEED_BYTES];
CRYPTO_STATUS Status = CRYPTO_ERROR_UNKNOWN;
decode_A(PublicKeyA, pk_A, seed);
Status = random_bytes(ERROR_SEED_BYTES, error_seed, pLatticeCrypto->RandomBytesFunction);
if (Status != CRYPTO_SUCCESS) {
goto cleanup;
}
Status = generate_a(a, seed, pLatticeCrypto->ExtendableOutputFunction);
if (Status != CRYPTO_SUCCESS) {
goto cleanup;
}
Status = get_error(sk_B, error_seed, 0, pLatticeCrypto->StreamOutputFunction);
if (Status != CRYPTO_SUCCESS) {
goto cleanup;
}
Status = get_error(e, error_seed, 1, pLatticeCrypto->StreamOutputFunction);
if (Status != CRYPTO_SUCCESS) {
goto cleanup;
}
NTT_CT_std2rev_12289(sk_B, psi_rev_ntt1024_12289, PARAMETER_N);
NTT_CT_std2rev_12289(e, psi_rev_ntt1024_12289, PARAMETER_N);
smul(e, 3, PARAMETER_N);
pmuladd((int32_t*)a, sk_B, e, (int32_t*)a, PARAMETER_N);
correction((int32_t*)a, PARAMETER_Q, PARAMETER_N);
Status = get_error(e, error_seed, 2, pLatticeCrypto->StreamOutputFunction);
if (Status != CRYPTO_SUCCESS) {
goto cleanup;
}
NTT_CT_std2rev_12289(e, psi_rev_ntt1024_12289, PARAMETER_N);
smul(e, 81, PARAMETER_N);
pmuladd((int32_t*)pk_A, sk_B, e, (int32_t*)v, PARAMETER_N);
INTT_GS_rev2std_12289((int32_t*)v, omegainv_rev_ntt1024_12289, omegainv10N_rev_ntt1024_12289, Ninv11_ntt1024_12289, PARAMETER_N);
two_reduce12289((int32_t*)v, PARAMETER_N);
#if defined(GENERIC_IMPLEMENTATION)
correction((int32_t*)v, PARAMETER_Q, PARAMETER_N);
#endif
Status = HelpRec(v, r, error_seed, 3, pLatticeCrypto->StreamOutputFunction);
if (Status != CRYPTO_SUCCESS) {
goto cleanup;
}
Rec(v, r, SharedSecretB);
encode_B(a, r, PublicKeyB);
cleanup:
clear_words((void*)sk_B, NBYTES_TO_NWORDS(4*PARAMETER_N));
clear_words((void*)e, NBYTES_TO_NWORDS(4*PARAMETER_N));
clear_words((void*)error_seed, NBYTES_TO_NWORDS(ERROR_SEED_BYTES));
clear_words((void*)a, NBYTES_TO_NWORDS(4*PARAMETER_N));
clear_words((void*)v, NBYTES_TO_NWORDS(4*PARAMETER_N));
clear_words((void*)r, NBYTES_TO_NWORDS(4*PARAMETER_N));
return Status;
}
CRYPTO_STATUS SecretAgreement_A(unsigned char* PublicKeyB, int32_t* SecretKeyA, unsigned char* SharedSecretA)
{ // Alice's shared secret computation
// It computes the shared secret SharedSecretA using Bob's public key PublicKeyB and Alice's private key SecretKeyA.
// Inputs: Bob's public key PublicKeyB that consists of 2048 bytes
// the private key SecretKeyA that consists of a 32-bit signed 1024-element array (4096 bytes in total)
// Output: the 256-bit shared secret SharedSecretA.
// pLatticeCrypto must be set up in advance using LatticeCrypto_initialize().
uint32_t u[PARAMETER_N], r[PARAMETER_N];
CRYPTO_STATUS Status = CRYPTO_SUCCESS;
decode_B(PublicKeyB, u, r);
pmul(SecretKeyA, (int32_t*)u, (int32_t*)u, PARAMETER_N);
INTT_GS_rev2std_12289((int32_t*)u, omegainv_rev_ntt1024_12289, omegainv10N_rev_ntt1024_12289, Ninv11_ntt1024_12289, PARAMETER_N);
two_reduce12289((int32_t*)u, PARAMETER_N);
#if defined(GENERIC_IMPLEMENTATION)
correction((int32_t*)u, PARAMETER_Q, PARAMETER_N);
#endif
Rec(u, r, SharedSecretA);
// Cleanup
clear_words((void*)u, NBYTES_TO_NWORDS(4*PARAMETER_N));
clear_words((void*)r, NBYTES_TO_NWORDS(4*PARAMETER_N));
return Status;
}