2016-05-17 18:24:46 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 10:52:47 +00:00
|
|
|
*
|
2018-12-06 12:48:17 +00:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-17 18:24:46 +00: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
|
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/evp.h>
|
|
|
|
#include <openssl/objects.h>
|
|
|
|
#include <openssl/x509.h>
|
|
|
|
#include <openssl/pem.h>
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2009-09-23 23:43:49 +00:00
|
|
|
int PEM_SignInit(EVP_MD_CTX *ctx, EVP_MD *type)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
return EVP_DigestInit_ex(ctx, type, NULL);
|
|
|
|
}
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
int PEM_SignUpdate(EVP_MD_CTX *ctx, unsigned char *data, unsigned int count)
|
|
|
|
{
|
|
|
|
return EVP_DigestUpdate(ctx, data, count);
|
|
|
|
}
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
int PEM_SignFinal(EVP_MD_CTX *ctx, unsigned char *sigret,
|
|
|
|
unsigned int *siglen, EVP_PKEY *pkey)
|
|
|
|
{
|
|
|
|
unsigned char *m;
|
|
|
|
int i, ret = 0;
|
|
|
|
unsigned int m_len;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2015-04-28 19:28:14 +00:00
|
|
|
m = OPENSSL_malloc(EVP_PKEY_size(pkey) + 2);
|
2015-01-22 03:40:55 +00:00
|
|
|
if (m == NULL) {
|
|
|
|
PEMerr(PEM_F_PEM_SIGNFINAL, ERR_R_MALLOC_FAILURE);
|
|
|
|
goto err;
|
|
|
|
}
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (EVP_SignFinal(ctx, m, &m_len, pkey) <= 0)
|
|
|
|
goto err;
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
i = EVP_EncodeBlock(sigret, m, m_len);
|
|
|
|
*siglen = i;
|
|
|
|
ret = 1;
|
|
|
|
err:
|
|
|
|
/* ctx has been zeroed by EVP_SignFinal() */
|
2015-05-01 14:02:07 +00:00
|
|
|
OPENSSL_free(m);
|
2017-10-17 14:04:09 +00:00
|
|
|
return ret;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|