2016-05-18 02:51:34 +08:00
|
|
|
/*
|
2021-04-08 20:04:41 +08:00
|
|
|
* Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2002-04-26 16:28:34 +08:00
|
|
|
*
|
2018-12-06 20:17:34 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:51:34 +08: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
|
2002-04-26 16:28:34 +08:00
|
|
|
*/
|
1998-12-21 18:52:47 +08:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
2017-08-25 20:51:45 +08:00
|
|
|
#include <sys/types.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2015-05-14 22:56:48 +08:00
|
|
|
#include "internal/cryptlib.h"
|
1999-09-12 01:54:18 +08:00
|
|
|
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/bn.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/x509.h>
|
|
|
|
#include <openssl/objects.h>
|
|
|
|
#include <openssl/buffer.h>
|
2020-01-21 21:56:13 +08:00
|
|
|
#include <openssl/core_names.h>
|
2019-09-28 06:45:33 +08:00
|
|
|
#include "crypto/asn1.h"
|
|
|
|
#include "crypto/evp.h"
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2020-02-25 05:33:52 +08:00
|
|
|
#ifndef OPENSSL_NO_DEPRECATED_3_0
|
2000-12-29 06:24:50 +08:00
|
|
|
|
2005-03-31 21:57:54 +08:00
|
|
|
int ASN1_sign(i2d_of_void *i2d, X509_ALGOR *algor1, X509_ALGOR *algor2,
|
2015-01-22 11:40:55 +08:00
|
|
|
ASN1_BIT_STRING *signature, char *data, EVP_PKEY *pkey,
|
|
|
|
const EVP_MD *type)
|
|
|
|
{
|
2015-12-02 07:49:35 +08:00
|
|
|
EVP_MD_CTX *ctx = EVP_MD_CTX_new();
|
2015-01-22 11:40:55 +08:00
|
|
|
unsigned char *p, *buf_in = NULL, *buf_out = NULL;
|
2018-10-01 04:39:38 +08:00
|
|
|
int i, inl = 0, outl = 0;
|
|
|
|
size_t inll = 0, outll = 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
X509_ALGOR *a;
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2015-11-27 21:02:12 +08:00
|
|
|
if (ctx == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_MALLOC_FAILURE);
|
2015-11-27 21:02:12 +08:00
|
|
|
goto err;
|
|
|
|
}
|
2015-01-22 11:40:55 +08:00
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
if (i == 0)
|
|
|
|
a = algor1;
|
|
|
|
else
|
|
|
|
a = algor2;
|
|
|
|
if (a == NULL)
|
|
|
|
continue;
|
|
|
|
if (type->pkey_type == NID_dsaWithSHA1) {
|
|
|
|
/*
|
|
|
|
* special case: RFC 2459 tells us to omit 'parameters' with
|
|
|
|
* id-dsa-with-sha1
|
|
|
|
*/
|
|
|
|
ASN1_TYPE_free(a->parameter);
|
|
|
|
a->parameter = NULL;
|
|
|
|
} else if ((a->parameter == NULL) ||
|
|
|
|
(a->parameter->type != V_ASN1_NULL)) {
|
|
|
|
ASN1_TYPE_free(a->parameter);
|
|
|
|
if ((a->parameter = ASN1_TYPE_new()) == NULL)
|
|
|
|
goto err;
|
|
|
|
a->parameter->type = V_ASN1_NULL;
|
|
|
|
}
|
|
|
|
ASN1_OBJECT_free(a->algorithm);
|
|
|
|
a->algorithm = OBJ_nid2obj(type->pkey_type);
|
|
|
|
if (a->algorithm == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ASN1_R_UNKNOWN_OBJECT_TYPE);
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (a->algorithm->length == 0) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1,
|
|
|
|
ASN1_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD);
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
inl = i2d(data, NULL);
|
2018-10-01 04:39:38 +08:00
|
|
|
if (inl <= 0) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_INTERNAL_ERROR);
|
2018-10-01 04:39:38 +08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
inll = (size_t)inl;
|
|
|
|
buf_in = OPENSSL_malloc(inll);
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
outll = outl = EVP_PKEY_get_size(pkey);
|
2018-10-01 04:39:38 +08:00
|
|
|
buf_out = OPENSSL_malloc(outll);
|
|
|
|
if (buf_in == NULL || buf_out == NULL) {
|
2015-01-22 11:40:55 +08:00
|
|
|
outl = 0;
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_MALLOC_FAILURE);
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
p = buf_in;
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
i2d(data, &p);
|
2015-11-27 21:02:12 +08:00
|
|
|
if (!EVP_SignInit_ex(ctx, type, NULL)
|
|
|
|
|| !EVP_SignUpdate(ctx, (unsigned char *)buf_in, inl)
|
|
|
|
|| !EVP_SignFinal(ctx, (unsigned char *)buf_out,
|
2015-01-22 11:40:55 +08:00
|
|
|
(unsigned int *)&outl, pkey)) {
|
|
|
|
outl = 0;
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_EVP_LIB);
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
|
|
|
}
|
2015-05-01 22:02:07 +08:00
|
|
|
OPENSSL_free(signature->data);
|
2015-01-22 11:40:55 +08:00
|
|
|
signature->data = buf_out;
|
|
|
|
buf_out = NULL;
|
|
|
|
signature->length = outl;
|
|
|
|
/*
|
|
|
|
* In the interests of compatibility, I'll make sure that the bit string
|
|
|
|
* has a 'not-used bits' value of 0
|
|
|
|
*/
|
|
|
|
signature->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07);
|
|
|
|
signature->flags |= ASN1_STRING_FLAG_BITS_LEFT;
|
|
|
|
err:
|
2015-12-02 07:49:35 +08:00
|
|
|
EVP_MD_CTX_free(ctx);
|
2018-10-01 04:39:38 +08:00
|
|
|
OPENSSL_clear_free((char *)buf_in, inll);
|
2015-05-01 05:57:32 +08:00
|
|
|
OPENSSL_clear_free((char *)buf_out, outll);
|
2017-10-17 22:04:09 +08:00
|
|
|
return outl;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2000-12-29 03:18:48 +08:00
|
|
|
|
2000-12-29 06:24:50 +08:00
|
|
|
#endif
|
|
|
|
|
2020-05-15 03:09:49 +08:00
|
|
|
int ASN1_item_sign(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2,
|
|
|
|
ASN1_BIT_STRING *signature, const void *data,
|
|
|
|
EVP_PKEY *pkey, const EVP_MD *md)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2020-09-24 17:42:23 +08:00
|
|
|
return ASN1_item_sign_ex(it, algor1, algor2, signature, data, NULL, pkey,
|
|
|
|
md, NULL, NULL);
|
2020-05-15 03:09:49 +08:00
|
|
|
}
|
|
|
|
|
2020-09-24 17:42:23 +08:00
|
|
|
int ASN1_item_sign_ex(const ASN1_ITEM *it, X509_ALGOR *algor1,
|
|
|
|
X509_ALGOR *algor2, ASN1_BIT_STRING *signature,
|
|
|
|
const void *data, const ASN1_OCTET_STRING *id,
|
2020-10-15 17:55:50 +08:00
|
|
|
EVP_PKEY *pkey, const EVP_MD *md, OSSL_LIB_CTX *libctx,
|
2020-09-24 17:42:23 +08:00
|
|
|
const char *propq)
|
2020-05-15 03:09:49 +08:00
|
|
|
{
|
|
|
|
int rv = 0;
|
2020-09-24 17:42:23 +08:00
|
|
|
EVP_MD_CTX *ctx = evp_md_ctx_new_ex(pkey, id, libctx, propq);
|
2015-11-27 21:02:12 +08:00
|
|
|
|
|
|
|
if (ctx == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_MALLOC_FAILURE);
|
2015-01-22 11:40:55 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2021-03-31 13:10:22 +08:00
|
|
|
/* We can use the non _ex variant here since the pkey is already setup */
|
2020-05-15 03:09:49 +08:00
|
|
|
if (!EVP_DigestSignInit(ctx, NULL, md, NULL, pkey))
|
|
|
|
goto err;
|
2016-03-19 03:20:34 +08:00
|
|
|
|
2020-05-15 03:09:49 +08:00
|
|
|
rv = ASN1_item_sign_ctx(it, algor1, algor2, signature, data, ctx);
|
2016-03-19 03:20:34 +08:00
|
|
|
|
2020-05-15 03:09:49 +08:00
|
|
|
err:
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
EVP_PKEY_CTX_free(EVP_MD_CTX_get_pkey_ctx(ctx));
|
2016-03-19 03:20:34 +08:00
|
|
|
EVP_MD_CTX_free(ctx);
|
|
|
|
return rv;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2010-03-11 21:32:38 +08:00
|
|
|
|
2020-05-15 03:09:49 +08:00
|
|
|
int ASN1_item_sign_ctx(const ASN1_ITEM *it, X509_ALGOR *algor1,
|
|
|
|
X509_ALGOR *algor2, ASN1_BIT_STRING *signature,
|
|
|
|
const void *data, EVP_MD_CTX *ctx)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2020-05-15 03:09:49 +08:00
|
|
|
const EVP_MD *md;
|
2015-01-22 11:40:55 +08:00
|
|
|
EVP_PKEY *pkey;
|
|
|
|
unsigned char *buf_in = NULL, *buf_out = NULL;
|
|
|
|
size_t inl = 0, outl = 0, outll = 0;
|
2018-10-01 04:39:38 +08:00
|
|
|
int signid, paramtype, buf_len = 0;
|
2019-06-05 14:46:48 +08:00
|
|
|
int rv, pkey_id;
|
2010-03-11 21:32:38 +08:00
|
|
|
|
Add "origin" field to EVP_CIPHER, EVP_MD
Add a "where did this EVP_{CIPHER,MD} come from" flag: global, via fetch,
or via EVP_{CIPHER,MD}_meth_new. Update EVP_{CIPHER,MD}_free to handle all
three origins. The flag is deliberately right before some function pointers,
so that compile-time failures (int/pointer) will occur, as opposed to
taking a bit in the existing "flags" field. The "global variable" flag
is non-zero, so the default case of using OPENSSL_zalloc (for provider
ciphers), will do the right thing. Ref-counting is a no-op for
Make up_ref no-op for global MD and CIPHER objects
Deprecate EVP_MD_CTX_md(). Added EVP_MD_CTX_get0_md() (same semantics as
the deprecated function) and EVP_MD_CTX_get1_md(). Likewise, deprecate
EVP_CIPHER_CTX_cipher() in favor of EVP_CIPHER_CTX_get0_cipher(), and add
EVP_CIPHER_CTX_get1_CIPHER().
Refactor EVP_MD_free() and EVP_MD_meth_free() to call new common
evp_md_free_int() function.
Refactor EVP_CIPHER_free() and EVP_CIPHER_meth_free() to call new common
evp_cipher_free_int() function.
Also change some flags tests to explicit test == or != zero. E.g.,
if (flags & x) --> if ((flags & x) != 0)
if (!(flags & x)) --> if ((flags & x) == 0)
Only done for those lines where "get0_cipher" calls were made.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14193)
2021-02-17 06:51:56 +08:00
|
|
|
md = EVP_MD_CTX_get0_md(ctx);
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
pkey = EVP_PKEY_CTX_get0_pkey(EVP_MD_CTX_get_pkey_ctx(ctx));
|
2000-12-29 03:18:48 +08:00
|
|
|
|
2017-05-20 10:18:32 +08:00
|
|
|
if (pkey == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ASN1_R_CONTEXT_NOT_INITIALISED);
|
2016-02-24 01:03:28 +08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2016-02-24 08:36:24 +08:00
|
|
|
if (pkey->ameth == NULL) {
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
EVP_PKEY_CTX *pctx = EVP_MD_CTX_get_pkey_ctx(ctx);
|
2020-01-21 21:56:13 +08:00
|
|
|
OSSL_PARAM params[2];
|
|
|
|
unsigned char aid[128];
|
|
|
|
size_t aid_len = 0;
|
|
|
|
|
|
|
|
if (pctx == NULL
|
|
|
|
|| !EVP_PKEY_CTX_IS_SIGNATURE_OP(pctx)) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ASN1_R_CONTEXT_NOT_INITIALISED);
|
2020-01-21 21:56:13 +08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
params[0] =
|
|
|
|
OSSL_PARAM_construct_octet_string(OSSL_SIGNATURE_PARAM_ALGORITHM_ID,
|
|
|
|
aid, sizeof(aid));
|
|
|
|
params[1] = OSSL_PARAM_construct_end();
|
|
|
|
|
|
|
|
if (EVP_PKEY_CTX_get_params(pctx, params) <= 0)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if ((aid_len = params[0].return_size) == 0) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ASN1_R_DIGEST_AND_KEY_TYPE_NOT_SUPPORTED);
|
2020-01-21 21:56:13 +08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (algor1 != NULL) {
|
|
|
|
const unsigned char *pp = aid;
|
|
|
|
|
|
|
|
if (d2i_X509_ALGOR(&algor1, &pp, aid_len) == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_INTERNAL_ERROR);
|
2020-01-21 21:56:13 +08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (algor2 != NULL) {
|
|
|
|
const unsigned char *pp = aid;
|
|
|
|
|
|
|
|
if (d2i_X509_ALGOR(&algor2, &pp, aid_len) == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_INTERNAL_ERROR);
|
2020-01-21 21:56:13 +08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
2006-05-08 01:09:39 +08:00
|
|
|
|
2020-01-21 21:56:13 +08:00
|
|
|
rv = 3;
|
|
|
|
} else if (pkey->ameth->item_sign) {
|
2020-05-15 03:09:49 +08:00
|
|
|
rv = pkey->ameth->item_sign(ctx, it, data, algor1, algor2, signature);
|
2015-01-22 11:40:55 +08:00
|
|
|
if (rv == 1)
|
|
|
|
outl = signature->length;
|
2015-01-05 19:30:03 +08:00
|
|
|
/*-
|
|
|
|
* Return value meanings:
|
|
|
|
* <=0: error.
|
|
|
|
* 1: method does everything.
|
|
|
|
* 2: carry on as normal.
|
|
|
|
* 3: ASN1 method sets algorithm identifiers: just sign.
|
|
|
|
*/
|
2015-01-22 11:40:55 +08:00
|
|
|
if (rv <= 0)
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_EVP_LIB);
|
2015-01-22 11:40:55 +08:00
|
|
|
if (rv <= 1)
|
|
|
|
goto err;
|
2017-05-20 10:18:32 +08:00
|
|
|
} else {
|
2015-01-22 11:40:55 +08:00
|
|
|
rv = 2;
|
2017-05-20 10:18:32 +08:00
|
|
|
}
|
2006-05-08 01:09:39 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
if (rv == 2) {
|
2020-05-15 03:09:49 +08:00
|
|
|
if (md == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ASN1_R_CONTEXT_NOT_INITIALISED);
|
2017-05-20 10:18:32 +08:00
|
|
|
goto err;
|
|
|
|
}
|
2019-06-05 14:46:48 +08:00
|
|
|
|
|
|
|
pkey_id =
|
|
|
|
#ifndef OPENSSL_NO_SM2
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
EVP_PKEY_get_id(pkey) == NID_sm2 ? NID_sm2 :
|
2019-06-05 14:46:48 +08:00
|
|
|
#endif
|
2020-01-21 21:56:13 +08:00
|
|
|
pkey->ameth->pkey_id;
|
2019-06-05 14:46:48 +08:00
|
|
|
|
2020-05-15 03:09:49 +08:00
|
|
|
if (!OBJ_find_sigid_by_algs(&signid, EVP_MD_nid(md), pkey_id)) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ASN1_R_DIGEST_AND_KEY_TYPE_NOT_SUPPORTED);
|
2016-02-24 01:03:28 +08:00
|
|
|
goto err;
|
2015-12-02 21:57:04 +08:00
|
|
|
}
|
2006-04-20 01:05:59 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
if (pkey->ameth->pkey_flags & ASN1_PKEY_SIGPARAM_NULL)
|
|
|
|
paramtype = V_ASN1_NULL;
|
|
|
|
else
|
|
|
|
paramtype = V_ASN1_UNDEF;
|
2006-04-20 01:05:59 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
if (algor1)
|
|
|
|
X509_ALGOR_set0(algor1, OBJ_nid2obj(signid), paramtype, NULL);
|
|
|
|
if (algor2)
|
|
|
|
X509_ALGOR_set0(algor2, OBJ_nid2obj(signid), paramtype, NULL);
|
2010-03-11 21:32:38 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2006-04-20 01:05:59 +08:00
|
|
|
|
2020-05-15 03:09:49 +08:00
|
|
|
buf_len = ASN1_item_i2d(data, &buf_in, it);
|
2018-10-01 04:39:38 +08:00
|
|
|
if (buf_len <= 0) {
|
|
|
|
outl = 0;
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_INTERNAL_ERROR);
|
2018-10-01 04:39:38 +08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
inl = buf_len;
|
2020-01-10 04:38:47 +08:00
|
|
|
if (!EVP_DigestSign(ctx, NULL, &outll, buf_in, inl)) {
|
|
|
|
outl = 0;
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_EVP_LIB);
|
2020-01-10 04:38:47 +08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
outl = outll;
|
2018-10-01 04:39:38 +08:00
|
|
|
buf_out = OPENSSL_malloc(outll);
|
|
|
|
if (buf_in == NULL || buf_out == NULL) {
|
2015-01-22 11:40:55 +08:00
|
|
|
outl = 0;
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_MALLOC_FAILURE);
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
|
|
|
}
|
2000-12-29 03:18:48 +08:00
|
|
|
|
2017-05-08 19:50:13 +08:00
|
|
|
if (!EVP_DigestSign(ctx, buf_out, &outl, buf_in, inl)) {
|
2015-01-22 11:40:55 +08:00
|
|
|
outl = 0;
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_EVP_LIB);
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
|
|
|
}
|
2015-05-01 22:02:07 +08:00
|
|
|
OPENSSL_free(signature->data);
|
2015-01-22 11:40:55 +08:00
|
|
|
signature->data = buf_out;
|
|
|
|
buf_out = NULL;
|
|
|
|
signature->length = outl;
|
|
|
|
/*
|
|
|
|
* In the interests of compatibility, I'll make sure that the bit string
|
|
|
|
* has a 'not-used bits' value of 0
|
|
|
|
*/
|
|
|
|
signature->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07);
|
|
|
|
signature->flags |= ASN1_STRING_FLAG_BITS_LEFT;
|
|
|
|
err:
|
2018-10-01 04:39:38 +08:00
|
|
|
OPENSSL_clear_free((char *)buf_in, inl);
|
2015-05-01 05:57:32 +08:00
|
|
|
OPENSSL_clear_free((char *)buf_out, outll);
|
2017-10-17 22:04:09 +08:00
|
|
|
return outl;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|