diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2018-02-18 12:52:14 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2018-02-18 12:52:14 +0000 |
commit | 2787ecbd158905f983fd0e36f271186fbe5c4cc0 (patch) | |
tree | 0618d142fca32bb91bf4449915eb49ac8c471c3d /lib/libcrypto/rsa/rsa.h | |
parent | aee7aa5d24fbd263cafbeacad12495143db45b82 (diff) |
Provide RSA_bits()
ok jsing
Diffstat (limited to 'lib/libcrypto/rsa/rsa.h')
-rw-r--r-- | lib/libcrypto/rsa/rsa.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/rsa/rsa.h b/lib/libcrypto/rsa/rsa.h index 7d4bd838c50..7e28a8766c6 100644 --- a/lib/libcrypto/rsa/rsa.h +++ b/lib/libcrypto/rsa/rsa.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rsa.h,v 1.32 2018/02/17 13:47:36 tb Exp $ */ +/* $OpenBSD: rsa.h,v 1.33 2018/02/18 12:52:13 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -256,6 +256,7 @@ struct rsa_st { RSA *RSA_new(void); RSA *RSA_new_method(ENGINE *engine); +int RSA_bits(const RSA *rsa); int RSA_size(const RSA *rsa); /* Deprecated version */ |