2016-05-18 02:51:26 +08:00
|
|
|
/*
|
2021-04-22 21:38:44 +08:00
|
|
|
* Copyright 2002-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2002-12-08 13:24:31 +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
|
2002-12-08 13:24:31 +08:00
|
|
|
*/
|
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
/*
|
|
|
|
* This file contains deprecated function(s) that are now wrappers to the new
|
|
|
|
* version(s).
|
|
|
|
*/
|
2002-12-08 13:24:31 +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"
|
|
|
|
|
2016-01-05 12:00:33 +08:00
|
|
|
#include <openssl/opensslconf.h>
|
2016-02-01 02:08:23 +08:00
|
|
|
|
2020-03-06 01:50:31 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include "internal/cryptlib.h"
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/bn.h>
|
|
|
|
#include <openssl/dsa.h>
|
|
|
|
#include <openssl/sha.h>
|
2002-12-08 13:24:31 +08:00
|
|
|
|
|
|
|
DSA *DSA_generate_parameters(int bits,
|
2015-01-22 11:40:55 +08:00
|
|
|
unsigned char *seed_in, int seed_len,
|
|
|
|
int *counter_ret, unsigned long *h_ret,
|
|
|
|
void (*callback) (int, int, void *),
|
|
|
|
void *cb_arg)
|
|
|
|
{
|
|
|
|
BN_GENCB *cb;
|
|
|
|
DSA *ret;
|
2002-12-08 13:24:31 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
if ((ret = DSA_new()) == NULL)
|
|
|
|
return NULL;
|
|
|
|
cb = BN_GENCB_new();
|
2015-10-30 19:12:26 +08:00
|
|
|
if (cb == NULL)
|
2015-03-24 22:17:37 +08:00
|
|
|
goto err;
|
2002-12-08 13:24:31 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
BN_GENCB_set_old(cb, callback, cb_arg);
|
2002-12-08 13:24:31 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
if (DSA_generate_parameters_ex(ret, bits, seed_in, seed_len,
|
|
|
|
counter_ret, h_ret, cb)) {
|
|
|
|
BN_GENCB_free(cb);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
BN_GENCB_free(cb);
|
2015-03-24 22:17:37 +08:00
|
|
|
err:
|
2015-01-22 11:40:55 +08:00
|
|
|
DSA_free(ret);
|
|
|
|
return NULL;
|
|
|
|
}
|