diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-10-30 20:32:03 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-10-30 20:32:03 +0100 |
commit | 62d310864669b0277e9ab506f0cf217c0a16b0dd (patch) | |
tree | bdd71dad877e89e6c775bff72f22f0578cf02371 /sys/include | |
parent | ef8cbbba03de2e3785a6170e9e7c4f6ca5f4aa78 (diff) |
ape/libsec: add secp384r1 curve parameters for tls
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/ape/libsec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/ape/libsec.h b/sys/include/ape/libsec.h index 8c7fb7c23..11e8b5f61 100644 --- a/sys/include/ape/libsec.h +++ b/sys/include/ape/libsec.h @@ -543,6 +543,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 *); |