diff options
author | tb <> | 2018-02-18 12:55:32 +0000 |
---|---|---|
committer | tb <> | 2018-02-18 12:55:32 +0000 |
commit | 751bc66947637a9abd1a17c25842d5ac30445e33 (patch) | |
tree | 60fbf0cd380d668ed3d2b973bfbc5e7f261824c4 /src/lib/libcrypto/rsa/rsa.h | |
parent | 57e413e44047c6de5afd81409c4917b1071cb777 (diff) | |
download | openbsd-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.h | 4 |
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, | |||
396 | int RSA_set_ex_data(RSA *r, int idx, void *arg); | 396 | int RSA_set_ex_data(RSA *r, int idx, void *arg); |
397 | void *RSA_get_ex_data(const RSA *r, int idx); | 397 | void *RSA_get_ex_data(const RSA *r, int idx); |
398 | 398 | ||
399 | int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d); | ||
400 | void RSA_get0_key(const RSA *r, const BIGNUM **n, const BIGNUM **e, | 399 | void RSA_get0_key(const RSA *r, const BIGNUM **n, const BIGNUM **e, |
401 | const BIGNUM **d); | 400 | const BIGNUM **d); |
401 | int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d); | ||
402 | void RSA_get0_factors(const RSA *r, const BIGNUM **p, const BIGNUM **q); | 402 | void RSA_get0_factors(const RSA *r, const BIGNUM **p, const BIGNUM **q); |
403 | int RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q); | 403 | int RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q); |
404 | 404 | ||