2016-05-17 14:52:22 -04:00
|
|
|
/*
|
2020-11-26 14:18:57 +00:00
|
|
|
* Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 10:52:47 +00:00
|
|
|
*
|
2018-12-06 13:17:34 +01:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-17 14:52:22 -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
|
1998-12-21 10:52:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 16:56:48 +02:00
|
|
|
#include "internal/cryptlib.h"
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/objects.h>
|
1999-07-21 22:10:23 +00:00
|
|
|
#include <openssl/x509.h>
|
1998-12-21 10:52:47 +00:00
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
X509_PKEY *X509_PKEY_new(void)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
X509_PKEY *ret = NULL;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2015-08-25 13:25:58 -04:00
|
|
|
ret = OPENSSL_zalloc(sizeof(*ret));
|
2015-10-30 11:12:26 +00:00
|
|
|
if (ret == NULL)
|
2015-03-28 15:25:46 +00:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
ret->enc_algor = X509_ALGOR_new();
|
|
|
|
ret->enc_pkey = ASN1_OCTET_STRING_new();
|
2015-10-30 11:12:26 +00:00
|
|
|
if (ret->enc_algor == NULL || ret->enc_pkey == NULL)
|
2015-03-28 15:25:46 +00:00
|
|
|
goto err;
|
2015-09-16 22:25:31 -04:00
|
|
|
|
2015-03-28 15:25:46 +00:00
|
|
|
return ret;
|
|
|
|
err:
|
|
|
|
X509_PKEY_free(ret);
|
2020-11-04 12:23:19 +01:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_MALLOC_FAILURE);
|
2015-03-28 15:25:46 +00:00
|
|
|
return NULL;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
1998-12-21 10:52:47 +00:00
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
void X509_PKEY_free(X509_PKEY *x)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
if (x == NULL)
|
|
|
|
return;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2015-04-30 17:33:59 -04:00
|
|
|
X509_ALGOR_free(x->enc_algor);
|
2015-03-24 07:52:24 -04:00
|
|
|
ASN1_OCTET_STRING_free(x->enc_pkey);
|
2015-03-28 10:54:15 -04:00
|
|
|
EVP_PKEY_free(x->dec_pkey);
|
2015-05-01 10:02:07 -04:00
|
|
|
if (x->key_free)
|
2015-01-22 03:40:55 +00:00
|
|
|
OPENSSL_free(x->key_data);
|
|
|
|
OPENSSL_free(x);
|
|
|
|
}
|