summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/rsa/rsa.h
diff options
context:
space:
mode:
authortb <>2018-02-18 12:55:32 +0000
committertb <>2018-02-18 12:55:32 +0000
commit751bc66947637a9abd1a17c25842d5ac30445e33 (patch)
tree60fbf0cd380d668ed3d2b973bfbc5e7f261824c4 /src/lib/libcrypto/rsa/rsa.h
parent57e413e44047c6de5afd81409c4917b1071cb777 (diff)
downloadopenbsd-751bc66947637a9abd1a17c25842d5ac30445e33.tar.gz
openbsd-751bc66947637a9abd1a17c25842d5ac30445e33.tar.bz2
openbsd-751bc66947637a9abd1a17c25842d5ac30445e33.zip
Use usual order of RSA_{g,s}et0_key().
ok jsing
Diffstat (limited to 'src/lib/libcrypto/rsa/rsa.h')
-rw-r--r--src/lib/libcrypto/rsa/rsa.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/rsa/rsa.h b/src/lib/libcrypto/rsa/rsa.h
index 51b06ba6aa..6cce38d35c 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.34 2018/02/18 12:53:46 tb Exp $ */ 1/* $OpenBSD: rsa.h,v 1.35 2018/02/18 12:55: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 *
@@ -396,9 +396,9 @@ int RSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
396int RSA_set_ex_data(RSA *r, int idx, void *arg); 396int RSA_set_ex_data(RSA *r, int idx, void *arg);
397void *RSA_get_ex_data(const RSA *r, int idx); 397void *RSA_get_ex_data(const RSA *r, int idx);
398 398
399int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d);
400void RSA_get0_key(const RSA *r, const BIGNUM **n, const BIGNUM **e, 399void RSA_get0_key(const RSA *r, const BIGNUM **n, const BIGNUM **e,
401 const BIGNUM **d); 400 const BIGNUM **d);
401int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d);
402void RSA_get0_factors(const RSA *r, const BIGNUM **p, const BIGNUM **q); 402void RSA_get0_factors(const RSA *r, const BIGNUM **p, const BIGNUM **q);
403int RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q); 403int RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q);
404 404