diff options
| author | tb <> | 2022-01-05 20:44:12 +0000 |
|---|---|---|
| committer | tb <> | 2022-01-05 20:44:12 +0000 |
| commit | cecafec9b459d90a879e1f1b5532962f0f5daa5f (patch) | |
| tree | 3114e081ea1980d87910f9f2a812d86056c9180b /src/lib/libcrypto/rsa/rsa_lib.c | |
| parent | 3fdeff6a8c35a019be65a98554644ca501c8da16 (diff) | |
| download | openbsd-cecafec9b459d90a879e1f1b5532962f0f5daa5f.tar.gz openbsd-cecafec9b459d90a879e1f1b5532962f0f5daa5f.tar.bz2 openbsd-cecafec9b459d90a879e1f1b5532962f0f5daa5f.zip | |
Prepare to provide a number of RSA accessors
This adds RSA_get0_{n,e,d,p,q,dmp1,dmq1,iqmp,pss_params}() which will
be exposed in the upcoming bump.
ok inoguchi jsing
Diffstat (limited to 'src/lib/libcrypto/rsa/rsa_lib.c')
| -rw-r--r-- | src/lib/libcrypto/rsa/rsa_lib.c | 56 |
1 files changed, 55 insertions, 1 deletions
diff --git a/src/lib/libcrypto/rsa/rsa_lib.c b/src/lib/libcrypto/rsa/rsa_lib.c index 0b76aae398..92b2f32d61 100644 --- a/src/lib/libcrypto/rsa/rsa_lib.c +++ b/src/lib/libcrypto/rsa/rsa_lib.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: rsa_lib.c,v 1.40 2020/01/17 10:40:03 inoguchi Exp $ */ | 1 | /* $OpenBSD: rsa_lib.c,v 1.41 2022/01/05 20:44:12 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 | * |
| @@ -336,6 +336,60 @@ RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q) | |||
| 336 | return 1; | 336 | return 1; |
| 337 | } | 337 | } |
| 338 | 338 | ||
| 339 | const BIGNUM * | ||
| 340 | RSA_get0_n(const RSA *r) | ||
| 341 | { | ||
| 342 | return r->n; | ||
| 343 | } | ||
| 344 | |||
| 345 | const BIGNUM * | ||
| 346 | RSA_get0_e(const RSA *r) | ||
| 347 | { | ||
| 348 | return r->e; | ||
| 349 | } | ||
| 350 | |||
| 351 | const BIGNUM * | ||
| 352 | RSA_get0_d(const RSA *r) | ||
| 353 | { | ||
| 354 | return r->d; | ||
| 355 | } | ||
| 356 | |||
| 357 | const BIGNUM * | ||
| 358 | RSA_get0_p(const RSA *r) | ||
| 359 | { | ||
| 360 | return r->p; | ||
| 361 | } | ||
| 362 | |||
| 363 | const BIGNUM * | ||
| 364 | RSA_get0_q(const RSA *r) | ||
| 365 | { | ||
| 366 | return r->q; | ||
| 367 | } | ||
| 368 | |||
| 369 | const BIGNUM * | ||
| 370 | RSA_get0_dmp1(const RSA *r) | ||
| 371 | { | ||
| 372 | return r->dmp1; | ||
| 373 | } | ||
| 374 | |||
| 375 | const BIGNUM * | ||
| 376 | RSA_get0_dmq1(const RSA *r) | ||
| 377 | { | ||
| 378 | return r->dmq1; | ||
| 379 | } | ||
| 380 | |||
| 381 | const BIGNUM * | ||
| 382 | RSA_get0_iqmp(const RSA *r) | ||
| 383 | { | ||
| 384 | return r->iqmp; | ||
| 385 | } | ||
| 386 | |||
| 387 | const RSA_PSS_PARAMS * | ||
| 388 | RSA_get0_pss_params(const RSA *r) | ||
| 389 | { | ||
| 390 | return r->pss; | ||
| 391 | } | ||
| 392 | |||
| 339 | void | 393 | void |
| 340 | RSA_clear_flags(RSA *r, int flags) | 394 | RSA_clear_flags(RSA *r, int flags) |
| 341 | { | 395 | { |
