2016-05-17 18:51:34 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 10:52:47 +00:00
|
|
|
*
|
2016-05-17 18:51:34 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* 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 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/bn.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/objects.h>
|
2016-03-18 18:30:20 +00:00
|
|
|
#include <openssl/engine.h>
|
2007-11-20 13:37:51 +00:00
|
|
|
#include <openssl/x509.h>
|
1999-07-24 03:09:01 +00:00
|
|
|
#include <openssl/asn1.h>
|
2015-03-23 18:42:42 +00:00
|
|
|
#include "internal/asn1_int.h"
|
2016-01-19 00:21:12 +00:00
|
|
|
#include "internal/evp_int.h"
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2004-03-15 23:15:26 +00:00
|
|
|
EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **a, const unsigned char **pp,
|
2015-01-22 03:40:55 +00:00
|
|
|
long length)
|
|
|
|
{
|
|
|
|
EVP_PKEY *ret;
|
2015-08-17 14:02:18 +00:00
|
|
|
const unsigned char *p = *pp;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if ((a == NULL) || (*a == NULL)) {
|
|
|
|
if ((ret = EVP_PKEY_new()) == NULL) {
|
|
|
|
ASN1err(ASN1_F_D2I_PRIVATEKEY, ERR_R_EVP_LIB);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ret = *a;
|
2006-06-05 12:38:22 +00:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
2016-02-25 17:09:06 +00:00
|
|
|
ENGINE_finish(ret->engine);
|
|
|
|
ret->engine = NULL;
|
2006-06-05 12:38:22 +00:00
|
|
|
#endif
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2006-06-05 11:52:46 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (!EVP_PKEY_set_type(ret, type)) {
|
|
|
|
ASN1err(ASN1_F_D2I_PRIVATEKEY, ASN1_R_UNKNOWN_PUBLIC_KEY_TYPE);
|
|
|
|
goto err;
|
|
|
|
}
|
2006-06-05 11:52:46 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (!ret->ameth->old_priv_decode ||
|
2015-08-17 14:02:18 +00:00
|
|
|
!ret->ameth->old_priv_decode(ret, &p, length)) {
|
2015-01-22 03:40:55 +00:00
|
|
|
if (ret->ameth->priv_decode) {
|
2016-05-03 14:05:31 +00:00
|
|
|
EVP_PKEY *tmp;
|
2015-01-22 03:40:55 +00:00
|
|
|
PKCS8_PRIV_KEY_INFO *p8 = NULL;
|
2015-08-17 14:02:18 +00:00
|
|
|
p8 = d2i_PKCS8_PRIV_KEY_INFO(NULL, &p, length);
|
2015-01-22 03:40:55 +00:00
|
|
|
if (!p8)
|
|
|
|
goto err;
|
2016-05-03 14:05:31 +00:00
|
|
|
tmp = EVP_PKCS82PKEY(p8);
|
2015-01-22 03:40:55 +00:00
|
|
|
PKCS8_PRIV_KEY_INFO_free(p8);
|
2016-05-03 14:05:31 +00:00
|
|
|
if (tmp == NULL)
|
2015-09-29 17:59:48 +00:00
|
|
|
goto err;
|
2016-05-03 14:05:31 +00:00
|
|
|
EVP_PKEY_free(ret);
|
|
|
|
ret = tmp;
|
2015-01-22 03:40:55 +00:00
|
|
|
} else {
|
|
|
|
ASN1err(ASN1_F_D2I_PRIVATEKEY, ERR_R_ASN1_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
2015-08-17 14:02:18 +00:00
|
|
|
*pp = p;
|
2015-01-22 03:40:55 +00:00
|
|
|
if (a != NULL)
|
|
|
|
(*a) = ret;
|
|
|
|
return (ret);
|
|
|
|
err:
|
2015-03-28 14:54:15 +00:00
|
|
|
if (a == NULL || *a != ret)
|
2015-01-22 03:40:55 +00:00
|
|
|
EVP_PKEY_free(ret);
|
|
|
|
return (NULL);
|
|
|
|
}
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
/*
|
|
|
|
* This works like d2i_PrivateKey() except it automatically works out the
|
|
|
|
* type
|
|
|
|
*/
|
2000-01-01 16:42:49 +00:00
|
|
|
|
2004-03-15 23:15:26 +00:00
|
|
|
EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **a, const unsigned char **pp,
|
2015-01-22 03:40:55 +00:00
|
|
|
long length)
|
2000-01-01 16:42:49 +00:00
|
|
|
{
|
2015-01-22 03:40:55 +00:00
|
|
|
STACK_OF(ASN1_TYPE) *inkey;
|
|
|
|
const unsigned char *p;
|
|
|
|
int keytype;
|
|
|
|
p = *pp;
|
|
|
|
/*
|
|
|
|
* Dirty trick: read in the ASN1 data into a STACK_OF(ASN1_TYPE): by
|
|
|
|
* analyzing it we can determine the passed structure: this assumes the
|
|
|
|
* input is surrounded by an ASN1 SEQUENCE.
|
|
|
|
*/
|
|
|
|
inkey = d2i_ASN1_SEQUENCE_ANY(NULL, &p, length);
|
2015-08-17 14:02:18 +00:00
|
|
|
p = *pp;
|
2015-01-22 03:40:55 +00:00
|
|
|
/*
|
|
|
|
* Since we only need to discern "traditional format" RSA and DSA keys we
|
|
|
|
* can just count the elements.
|
|
|
|
*/
|
|
|
|
if (sk_ASN1_TYPE_num(inkey) == 6)
|
|
|
|
keytype = EVP_PKEY_DSA;
|
|
|
|
else if (sk_ASN1_TYPE_num(inkey) == 4)
|
|
|
|
keytype = EVP_PKEY_EC;
|
|
|
|
else if (sk_ASN1_TYPE_num(inkey) == 3) { /* This seems to be PKCS8, not
|
|
|
|
* traditional format */
|
2015-08-17 14:02:18 +00:00
|
|
|
PKCS8_PRIV_KEY_INFO *p8 = d2i_PKCS8_PRIV_KEY_INFO(NULL, &p, length);
|
2015-01-22 03:40:55 +00:00
|
|
|
EVP_PKEY *ret;
|
2007-11-20 13:37:51 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
sk_ASN1_TYPE_pop_free(inkey, ASN1_TYPE_free);
|
|
|
|
if (!p8) {
|
|
|
|
ASN1err(ASN1_F_D2I_AUTOPRIVATEKEY,
|
|
|
|
ASN1_R_UNSUPPORTED_PUBLIC_KEY_TYPE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
ret = EVP_PKCS82PKEY(p8);
|
|
|
|
PKCS8_PRIV_KEY_INFO_free(p8);
|
2015-09-29 17:59:48 +00:00
|
|
|
if (ret == NULL)
|
|
|
|
return NULL;
|
|
|
|
*pp = p;
|
2015-01-22 03:40:55 +00:00
|
|
|
if (a) {
|
|
|
|
*a = ret;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
} else
|
|
|
|
keytype = EVP_PKEY_RSA;
|
|
|
|
sk_ASN1_TYPE_pop_free(inkey, ASN1_TYPE_free);
|
|
|
|
return d2i_PrivateKey(keytype, a, pp, length);
|
2000-01-01 16:42:49 +00:00
|
|
|
}
|