Skip to content

Commit

Permalink
fixup! ASN1_item_sign_ex(): include support for digest-less signing (…
Browse files Browse the repository at this point in the history
…EdDSA)
  • Loading branch information
DDvO committed Oct 17, 2023
1 parent d09ccce commit 5cc05b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crypto/asn1/a_sign.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <openssl/objects.h>
#include <openssl/buffer.h>
#include <openssl/core_names.h>
#include "internal/sizes.h"
#include "crypto/asn1.h"
#include "crypto/evp.h"

Expand Down Expand Up @@ -125,7 +126,7 @@ int ASN1_item_sign_ex(const ASN1_ITEM *it, X509_ALGOR *algor1,
EVP_PKEY *pkey, const EVP_MD *md, OSSL_LIB_CTX *libctx,
const char *propq)
{
char name[80];
char name[OSSL_MAX_NAME_SIZE];
int rv = 0;
EVP_MD_CTX *ctx;

Expand Down

0 comments on commit 5cc05b2

Please sign in to comment.