summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bn/bn.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/bn/bn.h')
-rw-r--r--src/lib/libcrypto/bn/bn.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/lib/libcrypto/bn/bn.h b/src/lib/libcrypto/bn/bn.h
index 0dde08a368..cca9def20b 100644
--- a/src/lib/libcrypto/bn/bn.h
+++ b/src/lib/libcrypto/bn/bn.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn.h,v 1.36 2017/01/25 06:15:44 beck Exp $ */ 1/* $OpenBSD: bn.h,v 1.37 2018/02/20 17:02:30 jsing Exp $ */
2/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -628,6 +628,8 @@ const BIGNUM *BN_get0_nist_prime_521(void);
628/* Primes from RFC 2409 */ 628/* Primes from RFC 2409 */
629BIGNUM *get_rfc2409_prime_768(BIGNUM *bn); 629BIGNUM *get_rfc2409_prime_768(BIGNUM *bn);
630BIGNUM *get_rfc2409_prime_1024(BIGNUM *bn); 630BIGNUM *get_rfc2409_prime_1024(BIGNUM *bn);
631BIGNUM *BN_get_rfc2409_prime_768(BIGNUM *bn);
632BIGNUM *BN_get_rfc2409_prime_1024(BIGNUM *bn);
631 633
632/* Primes from RFC 3526 */ 634/* Primes from RFC 3526 */
633BIGNUM *get_rfc3526_prime_1536(BIGNUM *bn); 635BIGNUM *get_rfc3526_prime_1536(BIGNUM *bn);
@@ -636,6 +638,12 @@ BIGNUM *get_rfc3526_prime_3072(BIGNUM *bn);
636BIGNUM *get_rfc3526_prime_4096(BIGNUM *bn); 638BIGNUM *get_rfc3526_prime_4096(BIGNUM *bn);
637BIGNUM *get_rfc3526_prime_6144(BIGNUM *bn); 639BIGNUM *get_rfc3526_prime_6144(BIGNUM *bn);
638BIGNUM *get_rfc3526_prime_8192(BIGNUM *bn); 640BIGNUM *get_rfc3526_prime_8192(BIGNUM *bn);
641BIGNUM *BN_get_rfc3526_prime_1536(BIGNUM *bn);
642BIGNUM *BN_get_rfc3526_prime_2048(BIGNUM *bn);
643BIGNUM *BN_get_rfc3526_prime_3072(BIGNUM *bn);
644BIGNUM *BN_get_rfc3526_prime_4096(BIGNUM *bn);
645BIGNUM *BN_get_rfc3526_prime_6144(BIGNUM *bn);
646BIGNUM *BN_get_rfc3526_prime_8192(BIGNUM *bn);
639 647
640/* BEGIN ERROR CODES */ 648/* BEGIN ERROR CODES */
641/* The following lines are auto generated by the script mkerr.pl. Any changes 649/* The following lines are auto generated by the script mkerr.pl. Any changes