Skip to content

Commit

Permalink
Another errant ref to ed25519
Browse files Browse the repository at this point in the history
  • Loading branch information
huitema committed May 17, 2024
1 parent 059249a commit ed0f872
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/mbedtls_sign.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include <mbedtls/pk.h>
#include <mbedtls/pem.h>
#include <mbedtls/error.h>
#include "mbedtls/x509_crt.h"
#include <mbedtls/x509_crt.h>
#include <psa/crypto.h>
#include <psa/crypto_struct.h>
#include <psa/crypto_values.h>
Expand Down Expand Up @@ -422,9 +422,12 @@ int ptls_mbedtls_set_available_schemes(ptls_mbedtls_sign_certificate_t *signer)
break;
}
break;
#if 0
/* Commenting out as MbedTLS does not support ED25519 yet */
case PSA_ALG_ED25519PH:
signer->schemes = ed25519_signature_schemes;
break;
#endif
default:
printf("Unknown algo: %x\n", algo);
ret = -1;
Expand Down

0 comments on commit ed0f872

Please sign in to comment.