2016-05-17 15:38:09 -04:00
|
|
|
/*
|
2020-04-23 13:55:52 +01:00
|
|
|
* Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2006-03-22 13:34:19 +00:00
|
|
|
*
|
2018-12-06 13:36:05 +01:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-17 15:38:09 -04: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
|
|
|
*/
|
|
|
|
|
2020-02-03 19:05:31 +10:00
|
|
|
/*
|
|
|
|
* DH low level APIs are deprecated for public use, but still ok for
|
|
|
|
* internal use.
|
|
|
|
*/
|
|
|
|
#include "internal/deprecated.h"
|
|
|
|
|
2006-03-22 13:34:19 +00:00
|
|
|
#include <stdio.h>
|
2015-05-14 16:56:48 +02:00
|
|
|
#include "internal/cryptlib.h"
|
2006-03-22 13:34:19 +00:00
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/dh.h>
|
|
|
|
|
2015-01-14 15:57:28 -05: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) {
|
2020-11-04 12:23:19 +01:00
|
|
|
ERR_raise(ERR_LIB_DH, ERR_R_BUF_LIB);
|
2017-10-17 23:04:09 +09: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 23:04:09 +09:00
|
|
|
return ret;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2006-03-22 13:34:19 +00:00
|
|
|
#endif
|