pmeth_fn.c 10.3 KB
Newer Older
1
/* pmeth_fn.c */
2
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
 * project 2006.
 */
/* ====================================================================
 * Copyright (c) 2006 The OpenSSL Project.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer. 
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. All advertising materials mentioning features or use of this
 *    software must display the following acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
 *
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
 *    endorse or promote products derived from this software without
 *    prior written permission. For written permission, please contact
 *    licensing@OpenSSL.org.
 *
 * 5. Products derived from this software may not be called "OpenSSL"
 *    nor may "OpenSSL" appear in their names without prior written
 *    permission of the OpenSSL Project.
 *
 * 6. Redistributions of any form whatsoever must retain the following
 *    acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
 *
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 * ====================================================================
 *
 * This product includes cryptographic software written by Eric Young
 * (eay@cryptsoft.com).  This product includes software written by Tim
 * Hudson (tjh@cryptsoft.com).
 *
 */

#include <stdio.h>
#include <stdlib.h>
#include "cryptlib.h"
62
#include <openssl/objects.h>
63 64 65
#include <openssl/evp.h>
#include "evp_locl.h"

66 67 68
#define M_check_autoarg(ctx, arg, arglen, err) \
	if (ctx->pmeth->flags & EVP_PKEY_FLAG_AUTOARGLEN) \
		{ \
69
		size_t pksize = (size_t)EVP_PKEY_size(ctx->pkey); \
70 71 72 73 74 75 76
		if (!arg) \
			{ \
			*arglen = pksize; \
			return 1; \
			} \
		else if (*arglen < pksize) \
			{ \
77
			EVPerr(err, EVP_R_BUFFER_TOO_SMALL); /*ckerr_ignore*/\
78 79 80 81
			return 0; \
			} \
		}

82
int EVP_PKEY_sign_init(EVP_PKEY_CTX *ctx)
83 84
	{
	int ret;
85
	if (!ctx || !ctx->pmeth || !ctx->pmeth->sign)
86 87 88 89 90 91
		{
		EVPerr(EVP_F_EVP_PKEY_SIGN_INIT,
			EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
		return -2;
		}
	ctx->operation = EVP_PKEY_OP_SIGN;
92 93
	if (!ctx->pmeth->sign_init)
		return 1;
94
	ret = ctx->pmeth->sign_init(ctx);
95 96 97 98 99 100
	if (ret <= 0)
		ctx->operation = EVP_PKEY_OP_UNDEFINED;
	return ret;
	}

int EVP_PKEY_sign(EVP_PKEY_CTX *ctx,
101 102
			unsigned char *sig, size_t *siglen,
			const unsigned char *tbs, size_t tbslen)
103 104 105 106 107 108 109 110 111 112 113 114
	{
	if (!ctx || !ctx->pmeth || !ctx->pmeth->sign)
		{
		EVPerr(EVP_F_EVP_PKEY_SIGN,
			EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
		return -2;
		}
	if (ctx->operation != EVP_PKEY_OP_SIGN)
		{
		EVPerr(EVP_F_EVP_PKEY_SIGN, EVP_R_OPERATON_NOT_INITIALIZED);
		return -1;
		}
115
	M_check_autoarg(ctx, sig, siglen, EVP_F_EVP_PKEY_SIGN)
116 117 118
	return ctx->pmeth->sign(ctx, sig, siglen, tbs, tbslen);
	}

119
int EVP_PKEY_verify_init(EVP_PKEY_CTX *ctx)
120 121
	{
	int ret;
122
	if (!ctx || !ctx->pmeth || !ctx->pmeth->verify)
123 124 125 126 127 128
		{
		EVPerr(EVP_F_EVP_PKEY_VERIFY_INIT,
			EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
		return -2;
		}
	ctx->operation = EVP_PKEY_OP_VERIFY;
129 130
	if (!ctx->pmeth->verify_init)
		return 1;
131
	ret = ctx->pmeth->verify_init(ctx);
132 133 134 135 136 137
	if (ret <= 0)
		ctx->operation = EVP_PKEY_OP_UNDEFINED;
	return ret;
	}

int EVP_PKEY_verify(EVP_PKEY_CTX *ctx,
138 139
			const unsigned char *sig, size_t siglen,
			const unsigned char *tbs, size_t tbslen)
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
	{
	if (!ctx || !ctx->pmeth || !ctx->pmeth->verify)
		{
		EVPerr(EVP_F_EVP_PKEY_VERIFY,
			EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
		return -2;
		}
	if (ctx->operation != EVP_PKEY_OP_VERIFY)
		{
		EVPerr(EVP_F_EVP_PKEY_VERIFY, EVP_R_OPERATON_NOT_INITIALIZED);
		return -1;
		}
	return ctx->pmeth->verify(ctx, sig, siglen, tbs, tbslen);
	}

155
int EVP_PKEY_verify_recover_init(EVP_PKEY_CTX *ctx)
156 157
	{
	int ret;
158
	if (!ctx || !ctx->pmeth || !ctx->pmeth->verify_recover)
159 160 161 162 163 164
		{
		EVPerr(EVP_F_EVP_PKEY_VERIFY_RECOVER_INIT,
			EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
		return -2;
		}
	ctx->operation = EVP_PKEY_OP_VERIFYRECOVER;
165 166
	if (!ctx->pmeth->verify_recover_init)
		return 1;
167
	ret = ctx->pmeth->verify_recover_init(ctx);
168 169 170 171 172 173
	if (ret <= 0)
		ctx->operation = EVP_PKEY_OP_UNDEFINED;
	return ret;
	}

int EVP_PKEY_verify_recover(EVP_PKEY_CTX *ctx,
174 175
			unsigned char *rout, size_t *routlen,
			const unsigned char *sig, size_t siglen)
176 177 178 179 180 181 182 183 184 185 186 187
	{
	if (!ctx || !ctx->pmeth || !ctx->pmeth->verify_recover)
		{
		EVPerr(EVP_F_EVP_PKEY_VERIFY_RECOVER,
			EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
		return -2;
		}
	if (ctx->operation != EVP_PKEY_OP_VERIFYRECOVER)
		{
		EVPerr(EVP_F_EVP_PKEY_VERIFY_RECOVER, EVP_R_OPERATON_NOT_INITIALIZED);
		return -1;
		}
188
	M_check_autoarg(ctx, rout, routlen, EVP_F_EVP_PKEY_VERIFY_RECOVER)
189 190 191
	return ctx->pmeth->verify_recover(ctx, rout, routlen, sig, siglen);
	}

192
int EVP_PKEY_encrypt_init(EVP_PKEY_CTX *ctx)
193 194
	{
	int ret;
195
	if (!ctx || !ctx->pmeth || !ctx->pmeth->encrypt)
196 197 198 199 200 201
		{
		EVPerr(EVP_F_EVP_PKEY_ENCRYPT_INIT,
			EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
		return -2;
		}
	ctx->operation = EVP_PKEY_OP_ENCRYPT;
202 203
	if (!ctx->pmeth->encrypt_init)
		return 1;
204
	ret = ctx->pmeth->encrypt_init(ctx);
205 206 207 208 209 210
	if (ret <= 0)
		ctx->operation = EVP_PKEY_OP_UNDEFINED;
	return ret;
	}

int EVP_PKEY_encrypt(EVP_PKEY_CTX *ctx,
211 212
			unsigned char *out, size_t *outlen,
			const unsigned char *in, size_t inlen)
213 214 215 216 217 218 219 220 221 222 223 224
	{
	if (!ctx || !ctx->pmeth || !ctx->pmeth->encrypt)
		{
		EVPerr(EVP_F_EVP_PKEY_ENCRYPT,
			EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
		return -2;
		}
	if (ctx->operation != EVP_PKEY_OP_ENCRYPT)
		{
		EVPerr(EVP_F_EVP_PKEY_ENCRYPT, EVP_R_OPERATON_NOT_INITIALIZED);
		return -1;
		}
225
	M_check_autoarg(ctx, out, outlen, EVP_F_EVP_PKEY_ENCRYPT)
226 227 228
	return ctx->pmeth->encrypt(ctx, out, outlen, in, inlen);
	}

229
int EVP_PKEY_decrypt_init(EVP_PKEY_CTX *ctx)
230 231
	{
	int ret;
232
	if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt)
233 234 235 236 237 238
		{
		EVPerr(EVP_F_EVP_PKEY_DECRYPT_INIT,
			EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
		return -2;
		}
	ctx->operation = EVP_PKEY_OP_DECRYPT;
239 240
	if (!ctx->pmeth->decrypt_init)
		return 1;
241
	ret = ctx->pmeth->decrypt_init(ctx);
242 243 244 245 246 247
	if (ret <= 0)
		ctx->operation = EVP_PKEY_OP_UNDEFINED;
	return ret;
	}

int EVP_PKEY_decrypt(EVP_PKEY_CTX *ctx,
248 249
			unsigned char *out, size_t *outlen,
			const unsigned char *in, size_t inlen)
250 251 252 253 254 255 256 257 258 259 260 261
	{
	if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt)
		{
		EVPerr(EVP_F_EVP_PKEY_DECRYPT,
			EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
		return -2;
		}
	if (ctx->operation != EVP_PKEY_OP_DECRYPT)
		{
		EVPerr(EVP_F_EVP_PKEY_DECRYPT, EVP_R_OPERATON_NOT_INITIALIZED);
		return -1;
		}
262
	M_check_autoarg(ctx, out, outlen, EVP_F_EVP_PKEY_DECRYPT)
263 264 265
	return ctx->pmeth->decrypt(ctx, out, outlen, in, inlen);
	}

D
Dr. Stephen Henson 已提交
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284

int EVP_PKEY_derive_init(EVP_PKEY_CTX *ctx)
	{
	int ret;
	if (!ctx || !ctx->pmeth || !ctx->pmeth->derive)
		{
		EVPerr(EVP_F_EVP_PKEY_DERIVE_INIT,
			EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
		return -2;
		}
	ctx->operation = EVP_PKEY_OP_DERIVE;
	if (!ctx->pmeth->derive_init)
		return 1;
	ret = ctx->pmeth->derive_init(ctx);
	if (ret <= 0)
		ctx->operation = EVP_PKEY_OP_UNDEFINED;
	return ret;
	}

285 286 287
int EVP_PKEY_derive_set_peer(EVP_PKEY_CTX *ctx, EVP_PKEY *peer)
	{
	int ret;
288
	if (!ctx || !ctx->pmeth || !(ctx->pmeth->derive||ctx->pmeth->encrypt||ctx->pmeth->decrypt) || !ctx->pmeth->ctrl)
289 290 291 292 293
		{
		EVPerr(EVP_F_EVP_PKEY_DERIVE_SET_PEER,
			EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
		return -2;
		}
294
	if (ctx->operation != EVP_PKEY_OP_DERIVE && ctx->operation != EVP_PKEY_OP_ENCRYPT && ctx->operation != EVP_PKEY_OP_DECRYPT)
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
		{
		EVPerr(EVP_F_EVP_PKEY_DERIVE_SET_PEER,
					EVP_R_OPERATON_NOT_INITIALIZED);
		return -1;
		}

	ret = ctx->pmeth->ctrl(ctx, EVP_PKEY_CTRL_PEER_KEY, 0, peer);

	if (ret <= 0)
		return ret;

	if (ret == 2)
		return 1;

	if (!ctx->pkey)
		{
		EVPerr(EVP_F_EVP_PKEY_DERIVE_SET_PEER, EVP_R_NO_KEY_SET);
		return -1;
		}

	if (ctx->pkey->type != peer->type)
		{
		EVPerr(EVP_F_EVP_PKEY_DERIVE_SET_PEER,
						EVP_R_DIFFERENT_KEY_TYPES);
		return -1;
		}

322 323 324 325 326
	/* ran@cryptocom.ru: For clarity.  The error is if parameters in peer are
	 * present (!missing) but don't match.  EVP_PKEY_cmp_parameters may return
	 * 1 (match), 0 (don't match) and -2 (comparison is not defined).  -1
	 * (different key types) is impossible here because it is checked earlier.
	 * -2 is OK for us here, as well as 1, so we can check for 0 only. */
327 328 329 330 331 332 333 334
	if (!EVP_PKEY_missing_parameters(peer) &&
		!EVP_PKEY_cmp_parameters(ctx->pkey, peer))
		{
		EVPerr(EVP_F_EVP_PKEY_DERIVE_SET_PEER,
						EVP_R_DIFFERENT_PARAMETERS);
		return -1;
		}

335 336
	if (ctx->peerkey)
		EVP_PKEY_free(ctx->peerkey);
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
	ctx->peerkey = peer;

	ret = ctx->pmeth->ctrl(ctx, EVP_PKEY_CTRL_PEER_KEY, 1, peer);

	if (ret <= 0)
		{
		ctx->peerkey = NULL;
		return ret;
		}

	CRYPTO_add(&peer->references,1,CRYPTO_LOCK_EVP_PKEY);
	return 1;
	}


352
int EVP_PKEY_derive(EVP_PKEY_CTX *ctx, unsigned char *key, size_t *pkeylen)
D
Dr. Stephen Henson 已提交
353 354 355 356 357 358 359 360 361 362 363 364
	{
	if (!ctx || !ctx->pmeth || !ctx->pmeth->derive)
		{
		EVPerr(EVP_F_EVP_PKEY_DERIVE,
			EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
		return -2;
		}
	if (ctx->operation != EVP_PKEY_OP_DERIVE)
		{
		EVPerr(EVP_F_EVP_PKEY_DERIVE, EVP_R_OPERATON_NOT_INITIALIZED);
		return -1;
		}
365
	M_check_autoarg(ctx, key, pkeylen, EVP_F_EVP_PKEY_DERIVE)
D
Dr. Stephen Henson 已提交
366 367 368
	return ctx->pmeth->derive(ctx, key, pkeylen);
	}