summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/rsa/rsa.h
diff options
context:
space:
mode:
authortb <>2018-02-20 17:42:32 +0000
committertb <>2018-02-20 17:42:32 +0000
commite6e87dba22757a3b4937ac796bb40b817e71a3d3 (patch)
treea9c77d344bf6cc7fd02191dd8496dd6a627e3235 /src/lib/libcrypto/rsa/rsa.h
parentdfa181abfd37625e8fcbe30907b6fd5f37c2df2d (diff)
downloadopenbsd-e6e87dba22757a3b4937ac796bb40b817e71a3d3.tar.gz
openbsd-e6e87dba22757a3b4937ac796bb40b817e71a3d3.tar.bz2
openbsd-e6e87dba22757a3b4937ac796bb40b817e71a3d3.zip
Provide RSA_{clear,set,test}_flasg()
ok jsing
Diffstat (limited to 'src/lib/libcrypto/rsa/rsa.h')
-rw-r--r--src/lib/libcrypto/rsa/rsa.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libcrypto/rsa/rsa.h b/src/lib/libcrypto/rsa/rsa.h
index b131359e8c..65a643f4c6 100644
--- a/src/lib/libcrypto/rsa/rsa.h
+++ b/src/lib/libcrypto/rsa/rsa.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: rsa.h,v 1.36 2018/02/18 12:57:14 tb Exp $ */ 1/* $OpenBSD: rsa.h,v 1.37 2018/02/20 17:42:32 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -404,6 +404,9 @@ void RSA_get0_crt_params(const RSA *r, const BIGNUM **dmp1, const BIGNUM **dmq1,
404int RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp); 404int RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp);
405void RSA_get0_factors(const RSA *r, const BIGNUM **p, const BIGNUM **q); 405void RSA_get0_factors(const RSA *r, const BIGNUM **p, const BIGNUM **q);
406int RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q); 406int RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q);
407void RSA_clear_flags(RSA *r, int flags);
408int RSA_test_flags(const RSA *r, int flags);
409void RSA_set_flags(RSA *r, int flags);
407 410
408RSA *RSAPublicKey_dup(RSA *rsa); 411RSA *RSAPublicKey_dup(RSA *rsa);
409RSA *RSAPrivateKey_dup(RSA *rsa); 412RSA *RSAPrivateKey_dup(RSA *rsa);