2016-05-17 19:38:09 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2006-03-22 13:34:19 +00:00
|
|
|
*
|
2018-12-06 12:36:05 +00:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-17 19:38:09 +00: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 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/evp.h>
|
|
|
|
#include <openssl/dh.h>
|
|
|
|
|
2015-01-14 20:57:28 +00:00
|
|
|
#ifndef OPENSSL_NO_STDIO
|
2006-03-22 13:34:19 +00:00
|
|
|
int DHparams_print_fp(FILE *fp, const DH *x)
|
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) {
|
|
|
|
DHerr(DH_F_DHPARAMS_PRINT_FP, ERR_R_BUF_LIB);
|
2017-10-17 14:04:09 +00:00
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
|
|
|
BIO_set_fp(b, fp, BIO_NOCLOSE);
|
|
|
|
ret = DHparams_print(b, x);
|
|
|
|
BIO_free(b);
|
2017-10-17 14:04:09 +00:00
|
|
|
return ret;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2006-03-22 13:34:19 +00:00
|
|
|
#endif
|