-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathecdh.c
42 lines (35 loc) · 938 Bytes
/
ecdh.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
#include <cry/ecdh.h>
#include "mpi/mpi_pvt.h"
#define CHK0(exp) CRY_CHK(res = (exp), e0)
#define CHK1(exp) CRY_CHK(res = (exp), e1)
int cry_ecdh_init(cry_ecdh_ctx *ctx, int grp_id)
{
int res;
if ((res = cry_mpi_init(&ctx->d)) < 0)
return res;
CHK0(cry_ecp_init_list(&ctx->q, &ctx->z, NULL));
if (grp_id != -1) {
CHK1(cry_ecp_grp_load(&ctx->grp, grp_id));
} else {
CHK1(cry_ecp_grp_init(&ctx->grp));
}
return 0;
e1: cry_ecp_clear_list(&ctx->q, &ctx->z, NULL);
e0: cry_mpi_clear(&ctx->d);
return res;
}
void cry_ecdh_clear(cry_ecdh_ctx *ctx)
{
cry_ecp_grp_clear(&ctx->grp);
cry_mpi_clear(&ctx->d);
cry_ecp_clear(&ctx->q);
cry_ecp_clear(&ctx->z);
}
int cry_ecdh_agree(cry_ecdh_ctx *ctx)
{
return cry_ecp_mul(&ctx->q, &ctx->grp.g, &ctx->d, &ctx->grp);
}
int cry_ecdh_final(cry_ecdh_ctx *ctx)
{
return cry_ecp_mul(&ctx->z, &ctx->q, &ctx->d, &ctx->grp);
}