aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libparc/parc/security/parc_PublicKeySigner.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libparc/parc/security/parc_PublicKeySigner.c b/libparc/parc/security/parc_PublicKeySigner.c
index 7d274398..5992c744 100644
--- a/libparc/parc/security/parc_PublicKeySigner.c
+++ b/libparc/parc/security/parc_PublicKeySigner.c
@@ -303,7 +303,7 @@ _SignDigest(PARCPublicKeySigner *signer, const PARCCryptoHash *digestToSign)
RSA *rsa = EVP_PKEY_get1_RSA(privateKey);
- uint8_t * sig = parcMemory_Allocate(RSA_size(rsa));
+ signature_buf = parcMemory_Allocate(RSA_size(rsa));
_SignDigestRSA(digestToSign, privateKeyBuffer, opensslDigestType, signature_buf, &signLenght);
RSA_free(rsa);
break;
@@ -318,7 +318,7 @@ _SignDigest(PARCPublicKeySigner *signer, const PARCCryptoHash *digestToSign)
EC_KEY *ec_key = EVP_PKEY_get1_EC_KEY(privateKey);
- uint8_t * sig = parcMemory_Allocate(ECDSA_size(ec_key));
+ signature_buf = parcMemory_Allocate(ECDSA_size(ec_key));
_SignDigestECDSA(digestToSign, privateKeyBuffer, opensslDigestType, signature_buf, &signLenght);
EC_KEY_free(ec_key);
break;