blob: 6adc3a9c19867e84e0fce6ec8bae0f2549cea563 [file] [log] [blame]
Matt Caswell0f113f32015-01-22 03:40:55 +00001/*
Rich Salz62867572016-05-17 14:24:46 -04002 * Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +00003 *
Rich Salz62867572016-05-17 14:24:46 -04004 * Licensed under the OpenSSL license (the "License"). You may not use
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
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +00008 */
9
10#include <stdio.h>
11#include <stdlib.h>
Richard Levitteb39fc562015-05-14 16:56:48 +020012#include "internal/cryptlib.h"
Dr. Stephen Hensonc20276e2006-04-17 12:08:22 +000013#include <openssl/objects.h>
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +000014#include <openssl/evp.h>
Matt Caswell68c29f62014-10-28 22:59:34 +000015#include "internal/bn_int.h"
Dr. Stephen Henson27af42f2015-03-23 22:57:47 +000016#include "internal/evp_int.h"
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +000017
18int EVP_PKEY_paramgen_init(EVP_PKEY_CTX *ctx)
Matt Caswell0f113f32015-01-22 03:40:55 +000019{
20 int ret;
21 if (!ctx || !ctx->pmeth || !ctx->pmeth->paramgen) {
22 EVPerr(EVP_F_EVP_PKEY_PARAMGEN_INIT,
23 EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
24 return -2;
25 }
26 ctx->operation = EVP_PKEY_OP_PARAMGEN;
27 if (!ctx->pmeth->paramgen_init)
28 return 1;
29 ret = ctx->pmeth->paramgen_init(ctx);
30 if (ret <= 0)
31 ctx->operation = EVP_PKEY_OP_UNDEFINED;
32 return ret;
33}
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +000034
35int EVP_PKEY_paramgen(EVP_PKEY_CTX *ctx, EVP_PKEY **ppkey)
Matt Caswell0f113f32015-01-22 03:40:55 +000036{
37 int ret;
38 if (!ctx || !ctx->pmeth || !ctx->pmeth->paramgen) {
39 EVPerr(EVP_F_EVP_PKEY_PARAMGEN,
40 EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
41 return -2;
42 }
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +000043
Matt Caswell0f113f32015-01-22 03:40:55 +000044 if (ctx->operation != EVP_PKEY_OP_PARAMGEN) {
45 EVPerr(EVP_F_EVP_PKEY_PARAMGEN, EVP_R_OPERATON_NOT_INITIALIZED);
46 return -1;
47 }
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +000048
Emilia Kaspere34c66c2015-09-01 16:31:55 +020049 if (ppkey == NULL)
Matt Caswell0f113f32015-01-22 03:40:55 +000050 return -1;
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +000051
Emilia Kaspere34c66c2015-09-01 16:31:55 +020052 if (*ppkey == NULL)
Matt Caswell0f113f32015-01-22 03:40:55 +000053 *ppkey = EVP_PKEY_new();
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +000054
Emilia Kaspere34c66c2015-09-01 16:31:55 +020055 if (*ppkey == NULL) {
56 EVPerr(EVP_F_EVP_PKEY_PARAMGEN, ERR_R_MALLOC_FAILURE);
57 return -1;
58 }
59
Matt Caswell0f113f32015-01-22 03:40:55 +000060 ret = ctx->pmeth->paramgen(ctx, *ppkey);
61 if (ret <= 0) {
62 EVP_PKEY_free(*ppkey);
63 *ppkey = NULL;
64 }
65 return ret;
66}
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +000067
68int EVP_PKEY_keygen_init(EVP_PKEY_CTX *ctx)
Matt Caswell0f113f32015-01-22 03:40:55 +000069{
70 int ret;
71 if (!ctx || !ctx->pmeth || !ctx->pmeth->keygen) {
72 EVPerr(EVP_F_EVP_PKEY_KEYGEN_INIT,
73 EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
74 return -2;
75 }
76 ctx->operation = EVP_PKEY_OP_KEYGEN;
77 if (!ctx->pmeth->keygen_init)
78 return 1;
79 ret = ctx->pmeth->keygen_init(ctx);
80 if (ret <= 0)
81 ctx->operation = EVP_PKEY_OP_UNDEFINED;
82 return ret;
83}
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +000084
85int EVP_PKEY_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY **ppkey)
Matt Caswell0f113f32015-01-22 03:40:55 +000086{
87 int ret;
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +000088
Matt Caswell0f113f32015-01-22 03:40:55 +000089 if (!ctx || !ctx->pmeth || !ctx->pmeth->keygen) {
90 EVPerr(EVP_F_EVP_PKEY_KEYGEN,
91 EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
92 return -2;
93 }
94 if (ctx->operation != EVP_PKEY_OP_KEYGEN) {
95 EVPerr(EVP_F_EVP_PKEY_KEYGEN, EVP_R_OPERATON_NOT_INITIALIZED);
96 return -1;
97 }
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +000098
Matt Caswell90945fa2015-10-30 11:12:26 +000099 if (ppkey == NULL)
Matt Caswell0f113f32015-01-22 03:40:55 +0000100 return -1;
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +0000101
Matt Caswell90945fa2015-10-30 11:12:26 +0000102 if (*ppkey == NULL)
Matt Caswell0f113f32015-01-22 03:40:55 +0000103 *ppkey = EVP_PKEY_new();
Matt Caswell90945fa2015-10-30 11:12:26 +0000104 if (*ppkey == NULL)
105 return -1;
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +0000106
Matt Caswell0f113f32015-01-22 03:40:55 +0000107 ret = ctx->pmeth->keygen(ctx, *ppkey);
108 if (ret <= 0) {
109 EVP_PKEY_free(*ppkey);
110 *ppkey = NULL;
111 }
112 return ret;
113}
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +0000114
115void EVP_PKEY_CTX_set_cb(EVP_PKEY_CTX *ctx, EVP_PKEY_gen_cb *cb)
Matt Caswell0f113f32015-01-22 03:40:55 +0000116{
117 ctx->pkey_gencb = cb;
118}
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +0000119
Dr. Stephen Hensonb28dea42006-05-31 17:34:14 +0000120EVP_PKEY_gen_cb *EVP_PKEY_CTX_get_cb(EVP_PKEY_CTX *ctx)
Matt Caswell0f113f32015-01-22 03:40:55 +0000121{
122 return ctx->pkey_gencb;
123}
Dr. Stephen Hensonb28dea42006-05-31 17:34:14 +0000124
Matt Caswell0f113f32015-01-22 03:40:55 +0000125/*
126 * "translation callback" to call EVP_PKEY_CTX callbacks using BN_GENCB style
127 * callbacks.
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +0000128 */
129
130static int trans_cb(int a, int b, BN_GENCB *gcb)
Matt Caswell0f113f32015-01-22 03:40:55 +0000131{
132 EVP_PKEY_CTX *ctx = BN_GENCB_get_arg(gcb);
133 ctx->keygen_info[0] = a;
134 ctx->keygen_info[1] = b;
135 return ctx->pkey_gencb(ctx);
136}
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +0000137
138void evp_pkey_set_cb_translate(BN_GENCB *cb, EVP_PKEY_CTX *ctx)
Matt Caswell0f113f32015-01-22 03:40:55 +0000139{
140 BN_GENCB_set(cb, trans_cb, ctx);
141}
Dr. Stephen Hensonf5cda4c2006-04-11 13:28:52 +0000142
143int EVP_PKEY_CTX_get_keygen_info(EVP_PKEY_CTX *ctx, int idx)
Matt Caswell0f113f32015-01-22 03:40:55 +0000144{
145 if (idx == -1)
146 return ctx->keygen_info_count;
147 if (idx < 0 || idx > ctx->keygen_info_count)
148 return 0;
149 return ctx->keygen_info[idx];
150}
Dr. Stephen Henson2022cfe2007-04-11 17:20:40 +0000151
152EVP_PKEY *EVP_PKEY_new_mac_key(int type, ENGINE *e,
Matt Caswell0f113f32015-01-22 03:40:55 +0000153 const unsigned char *key, int keylen)
154{
155 EVP_PKEY_CTX *mac_ctx = NULL;
156 EVP_PKEY *mac_key = NULL;
157 mac_ctx = EVP_PKEY_CTX_new_id(type, e);
158 if (!mac_ctx)
159 return NULL;
160 if (EVP_PKEY_keygen_init(mac_ctx) <= 0)
161 goto merr;
Dr. Stephen Hensoneff1a4d2015-02-10 18:06:56 +0000162 if (EVP_PKEY_CTX_set_mac_key(mac_ctx, key, keylen) <= 0)
Matt Caswell0f113f32015-01-22 03:40:55 +0000163 goto merr;
164 if (EVP_PKEY_keygen(mac_ctx, &mac_key) <= 0)
165 goto merr;
166 merr:
Rich Salzc5ba2d92015-03-28 10:54:15 -0400167 EVP_PKEY_CTX_free(mac_ctx);
Matt Caswell0f113f32015-01-22 03:40:55 +0000168 return mac_key;
169}