2015-01-22 11:40:55 +08:00
|
|
|
/*
|
2021-07-29 22:41:35 +08:00
|
|
|
* Copyright 2006-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2006-04-15 01:36:18 +08:00
|
|
|
*
|
2018-12-06 20:36:26 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:51:26 +08:00
|
|
|
* 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 21:34:19 +08:00
|
|
|
*/
|
2006-04-15 01:36:18 +08:00
|
|
|
|
2020-01-30 05:23:39 +08:00
|
|
|
/*
|
|
|
|
* DSA low level APIs are deprecated for public use, but still ok for
|
|
|
|
* internal use.
|
|
|
|
*/
|
|
|
|
#include "internal/deprecated.h"
|
|
|
|
|
2006-03-22 21:34:19 +08:00
|
|
|
#include <stdio.h>
|
2015-05-14 22:56:48 +08:00
|
|
|
#include "internal/cryptlib.h"
|
2006-03-22 21:34:19 +08:00
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/dsa.h>
|
|
|
|
|
2015-01-15 04:57:28 +08:00
|
|
|
#ifndef OPENSSL_NO_STDIO
|
2006-03-22 21:34:19 +08:00
|
|
|
int DSA_print_fp(FILE *fp, const DSA *x, int off)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
BIO *b;
|
|
|
|
int ret;
|
2006-03-22 21:34:19 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
if ((b = BIO_new(BIO_s_file())) == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_DSA, ERR_R_BUF_LIB);
|
2017-10-17 22:04:09 +08:00
|
|
|
return 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
BIO_set_fp(b, fp, BIO_NOCLOSE);
|
|
|
|
ret = DSA_print(b, x, off);
|
|
|
|
BIO_free(b);
|
2017-10-17 22:04:09 +08:00
|
|
|
return ret;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2006-03-22 21:34:19 +08:00
|
|
|
|
|
|
|
int DSAparams_print_fp(FILE *fp, const DSA *x)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
BIO *b;
|
|
|
|
int ret;
|
2006-03-22 21:34:19 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
if ((b = BIO_new(BIO_s_file())) == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_DSA, ERR_R_BUF_LIB);
|
2017-10-17 22:04:09 +08:00
|
|
|
return 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
BIO_set_fp(b, fp, BIO_NOCLOSE);
|
|
|
|
ret = DSAparams_print(b, x);
|
|
|
|
BIO_free(b);
|
2017-10-17 22:04:09 +08:00
|
|
|
return ret;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2006-03-22 21:34:19 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
int DSA_print(BIO *bp, const DSA *x, int off)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
EVP_PKEY *pk;
|
|
|
|
int ret;
|
|
|
|
pk = EVP_PKEY_new();
|
2021-07-22 00:45:01 +08:00
|
|
|
if (pk == NULL)
|
2015-01-22 11:40:55 +08:00
|
|
|
return 0;
|
2021-07-22 00:45:01 +08:00
|
|
|
ret = EVP_PKEY_set1_DSA(pk, (DSA *)x);
|
|
|
|
if (ret)
|
|
|
|
ret = EVP_PKEY_print_private(bp, pk, off, NULL);
|
2015-01-22 11:40:55 +08:00
|
|
|
EVP_PKEY_free(pk);
|
|
|
|
return ret;
|
|
|
|
}
|
2006-03-22 21:34:19 +08:00
|
|
|
|
|
|
|
int DSAparams_print(BIO *bp, const DSA *x)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
EVP_PKEY *pk;
|
|
|
|
int ret;
|
|
|
|
pk = EVP_PKEY_new();
|
2021-07-22 00:45:01 +08:00
|
|
|
if (pk == NULL)
|
2015-01-22 11:40:55 +08:00
|
|
|
return 0;
|
2021-07-22 00:45:01 +08:00
|
|
|
ret = EVP_PKEY_set1_DSA(pk, (DSA *)x);
|
|
|
|
if (ret)
|
|
|
|
ret = EVP_PKEY_print_params(bp, pk, 4, NULL);
|
2015-01-22 11:40:55 +08:00
|
|
|
EVP_PKEY_free(pk);
|
|
|
|
return ret;
|
|
|
|
}
|