diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-10-30 02:15:40 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-10-30 02:15:40 +0100 |
commit | c9d55cadb36a6667d61d0001b0f7619c74431d4a (patch) | |
tree | 79fbe70ef25101785f9dbcb67358ab11ebf38600 /sys/include/libsec.h | |
parent | d5992857bbb2947b46ddf7d451a40dcd3e31e0e4 (diff) |
libsec: add secp384r1 curve parameters for tls
Diffstat (limited to 'sys/include/libsec.h')
-rw-r--r-- | sys/include/libsec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/libsec.h b/sys/include/libsec.h index 793f13845..348f4f967 100644 --- a/sys/include/libsec.h +++ b/sys/include/libsec.h @@ -535,6 +535,7 @@ char* X509ecdsaverify(uchar *sig, int siglen, ECdomain *dom, ECpub *pub); /* curves */ void secp256r1(mpint *p, mpint *a, mpint *b, mpint *x, mpint *y, mpint *n, mpint *h); void secp256k1(mpint *p, mpint *a, mpint *b, mpint *x, mpint *y, mpint *n, mpint *h); +void secp384r1(mpint *p, mpint *a, mpint *b, mpint *x, mpint *y, mpint *n, mpint *h); DigestState* ripemd160(uchar *, ulong, uchar *, DigestState *); |