2015-01-22 03:40:55 +00:00
|
|
|
/*
|
2017-08-22 17:25:23 +00:00
|
|
|
* Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved.
|
2006-04-14 17:36:18 +00:00
|
|
|
*
|
2016-05-17 18:51:34 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2006-03-22 13:34:19 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
2006-03-22 13:34:19 +00:00
|
|
|
#include <openssl/rsa.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
|
2015-01-14 20:57:28 +00:00
|
|
|
#ifndef OPENSSL_NO_STDIO
|
2006-03-22 13:34:19 +00:00
|
|
|
int RSA_print_fp(FILE *fp, const RSA *x, int off)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
BIO *b;
|
|
|
|
int ret;
|
2006-03-22 13:34:19 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if ((b = BIO_new(BIO_s_file())) == NULL) {
|
|
|
|
RSAerr(RSA_F_RSA_PRINT_FP, ERR_R_BUF_LIB);
|
2017-08-22 17:25:23 +00:00
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
|
|
|
BIO_set_fp(b, fp, BIO_NOCLOSE);
|
|
|
|
ret = RSA_print(b, x, off);
|
|
|
|
BIO_free(b);
|
2017-08-22 17:25:23 +00:00
|
|
|
return ret;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2006-03-22 13:34:19 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
int RSA_print(BIO *bp, const RSA *x, int off)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
EVP_PKEY *pk;
|
|
|
|
int ret;
|
|
|
|
pk = EVP_PKEY_new();
|
2015-10-30 11:12:26 +00:00
|
|
|
if (pk == NULL || !EVP_PKEY_set1_RSA(pk, (RSA *)x))
|
2015-01-22 03:40:55 +00:00
|
|
|
return 0;
|
|
|
|
ret = EVP_PKEY_print_private(bp, pk, off, NULL);
|
|
|
|
EVP_PKEY_free(pk);
|
|
|
|
return ret;
|
|
|
|
}
|