summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/rsa/rsa.h
diff options
context:
space:
mode:
authortb <>2018-02-18 12:52:13 +0000
committertb <>2018-02-18 12:52:13 +0000
commitd7ec2573e9647e327eb8fddb8465b70fc269f8be (patch)
tree2e7437f2ff475481295d8f4dafb561022f83d61b /src/lib/libcrypto/rsa/rsa.h
parent040132e1df7651e2b1ab7074759481599b02651a (diff)
downloadopenbsd-d7ec2573e9647e327eb8fddb8465b70fc269f8be.tar.gz
openbsd-d7ec2573e9647e327eb8fddb8465b70fc269f8be.tar.bz2
openbsd-d7ec2573e9647e327eb8fddb8465b70fc269f8be.zip
Provide RSA_bits()
ok jsing
Diffstat (limited to 'src/lib/libcrypto/rsa/rsa.h')
-rw-r--r--src/lib/libcrypto/rsa/rsa.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/rsa/rsa.h b/src/lib/libcrypto/rsa/rsa.h
index 7d4bd838c5..7e28a8766c 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.32 2018/02/17 13:47:36 tb Exp $ */ 1/* $OpenBSD: rsa.h,v 1.33 2018/02/18 12:52:13 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 *
@@ -256,6 +256,7 @@ struct rsa_st {
256 256
257RSA *RSA_new(void); 257RSA *RSA_new(void);
258RSA *RSA_new_method(ENGINE *engine); 258RSA *RSA_new_method(ENGINE *engine);
259int RSA_bits(const RSA *rsa);
259int RSA_size(const RSA *rsa); 260int RSA_size(const RSA *rsa);
260 261
261/* Deprecated version */ 262/* Deprecated version */