]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/evp/evp_pkey.c
Implement provider support for Asym Ciphers
[thirdparty/openssl.git] / crypto / evp / evp_pkey.c
CommitLineData
0f113f3e 1/*
aa6bb135 2 * Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
cfcefcbe 3 *
4a8b0c55 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
aa6bb135
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
cfcefcbe
DSH
8 */
9
10#include <stdio.h>
11#include <stdlib.h>
b39fc560 12#include "internal/cryptlib.h"
ec577822
BM
13#include <openssl/x509.h>
14#include <openssl/rand.h>
25f2138b
DMSP
15#include "crypto/asn1.h"
16#include "crypto/evp.h"
17#include "crypto/x509.h"
cfcefcbe
DSH
18
19/* Extract a private key from a PKCS8 structure */
20
245c6bc3 21EVP_PKEY *EVP_PKCS82PKEY(const PKCS8_PRIV_KEY_INFO *p8)
cfcefcbe 22{
0f113f3e 23 EVP_PKEY *pkey = NULL;
245c6bc3 24 const ASN1_OBJECT *algoid;
0f113f3e
MC
25 char obj_tmp[80];
26
27 if (!PKCS8_pkey_get0(&algoid, NULL, NULL, NULL, p8))
28 return NULL;
29
75ebbd9a 30 if ((pkey = EVP_PKEY_new()) == NULL) {
0f113f3e
MC
31 EVPerr(EVP_F_EVP_PKCS82PKEY, ERR_R_MALLOC_FAILURE);
32 return NULL;
33 }
34
35 if (!EVP_PKEY_set_type(pkey, OBJ_obj2nid(algoid))) {
36 EVPerr(EVP_F_EVP_PKCS82PKEY, EVP_R_UNSUPPORTED_PRIVATE_KEY_ALGORITHM);
37 i2t_ASN1_OBJECT(obj_tmp, 80, algoid);
38 ERR_add_error_data(2, "TYPE=", obj_tmp);
39 goto error;
40 }
41
42 if (pkey->ameth->priv_decode) {
43 if (!pkey->ameth->priv_decode(pkey, p8)) {
44 EVPerr(EVP_F_EVP_PKCS82PKEY, EVP_R_PRIVATE_KEY_DECODE_ERROR);
45 goto error;
46 }
47 } else {
48 EVPerr(EVP_F_EVP_PKCS82PKEY, EVP_R_METHOD_NOT_SUPPORTED);
49 goto error;
50 }
51
52 return pkey;
53
54 error:
55 EVP_PKEY_free(pkey);
56 return NULL;
cfcefcbe
DSH
57}
58
59/* Turn a private key into a PKCS8 structure */
60
9fdcc21f 61PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8(const EVP_PKEY *pkey)
cfcefcbe 62{
54dbf423
DSH
63 PKCS8_PRIV_KEY_INFO *p8 = PKCS8_PRIV_KEY_INFO_new();
64 if (p8 == NULL) {
65 EVPerr(EVP_F_EVP_PKEY2PKCS8, ERR_R_MALLOC_FAILURE);
0f113f3e
MC
66 return NULL;
67 }
0f113f3e
MC
68
69 if (pkey->ameth) {
70 if (pkey->ameth->priv_encode) {
71 if (!pkey->ameth->priv_encode(p8, pkey)) {
54dbf423 72 EVPerr(EVP_F_EVP_PKEY2PKCS8, EVP_R_PRIVATE_KEY_ENCODE_ERROR);
0f113f3e
MC
73 goto error;
74 }
75 } else {
54dbf423 76 EVPerr(EVP_F_EVP_PKEY2PKCS8, EVP_R_METHOD_NOT_SUPPORTED);
0f113f3e
MC
77 goto error;
78 }
79 } else {
54dbf423 80 EVPerr(EVP_F_EVP_PKEY2PKCS8, EVP_R_UNSUPPORTED_PRIVATE_KEY_ALGORITHM);
0f113f3e
MC
81 goto error;
82 }
0f113f3e
MC
83 return p8;
84 error:
85 PKCS8_PRIV_KEY_INFO_free(p8);
86 return NULL;
cfcefcbe
DSH
87}
88
b6995add
DSH
89/* EVP_PKEY attribute functions */
90
91int EVP_PKEY_get_attr_count(const EVP_PKEY *key)
92{
0f113f3e 93 return X509at_get_attr_count(key->attributes);
b6995add
DSH
94}
95
0f113f3e 96int EVP_PKEY_get_attr_by_NID(const EVP_PKEY *key, int nid, int lastpos)
b6995add 97{
0f113f3e 98 return X509at_get_attr_by_NID(key->attributes, nid, lastpos);
b6995add
DSH
99}
100
c47ba4e9 101int EVP_PKEY_get_attr_by_OBJ(const EVP_PKEY *key, const ASN1_OBJECT *obj,
0f113f3e 102 int lastpos)
b6995add 103{
0f113f3e 104 return X509at_get_attr_by_OBJ(key->attributes, obj, lastpos);
b6995add
DSH
105}
106
107X509_ATTRIBUTE *EVP_PKEY_get_attr(const EVP_PKEY *key, int loc)
108{
0f113f3e 109 return X509at_get_attr(key->attributes, loc);
b6995add
DSH
110}
111
112X509_ATTRIBUTE *EVP_PKEY_delete_attr(EVP_PKEY *key, int loc)
113{
0f113f3e 114 return X509at_delete_attr(key->attributes, loc);
b6995add
DSH
115}
116
117int EVP_PKEY_add1_attr(EVP_PKEY *key, X509_ATTRIBUTE *attr)
118{
0f113f3e
MC
119 if (X509at_add1_attr(&key->attributes, attr))
120 return 1;
121 return 0;
b6995add
DSH
122}
123
124int EVP_PKEY_add1_attr_by_OBJ(EVP_PKEY *key,
0f113f3e
MC
125 const ASN1_OBJECT *obj, int type,
126 const unsigned char *bytes, int len)
b6995add 127{
0f113f3e
MC
128 if (X509at_add1_attr_by_OBJ(&key->attributes, obj, type, bytes, len))
129 return 1;
130 return 0;
b6995add
DSH
131}
132
133int EVP_PKEY_add1_attr_by_NID(EVP_PKEY *key,
0f113f3e
MC
134 int nid, int type,
135 const unsigned char *bytes, int len)
b6995add 136{
0f113f3e
MC
137 if (X509at_add1_attr_by_NID(&key->attributes, nid, type, bytes, len))
138 return 1;
139 return 0;
b6995add
DSH
140}
141
142int EVP_PKEY_add1_attr_by_txt(EVP_PKEY *key,
0f113f3e
MC
143 const char *attrname, int type,
144 const unsigned char *bytes, int len)
b6995add 145{
0f113f3e
MC
146 if (X509at_add1_attr_by_txt(&key->attributes, attrname, type, bytes, len))
147 return 1;
148 return 0;
b6995add 149}