From da7b918dc4299446bf5e9150bf4badda91040229 Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Mon, 18 Sep 2023 01:34:34 +0200 Subject: [PATCH] Added RS algorithms though are not supported. Signed-off-by: Pol Henarejos --- src/fido/fido.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/fido/fido.h b/src/fido/fido.h index c22ed37..f12dc5d 100644 --- a/src/fido/fido.h +++ b/src/fido/fido.h @@ -66,6 +66,9 @@ extern int ecdh(uint8_t protocol, const mbedtls_ecp_point *Q, uint8_t *sharedSec #define FIDO2_ALG_ES512 -36 //ECDSA-SHA512 P521 #define FIDO2_ALG_ECDH_ES_HKDF_256 -25 //ECDH-ES + HKDF-256 #define FIDO2_ALG_ES256K -47 +#define FIDO2_ALG_RS256 -257 +#define FIDO2_ALG_RS384 -258 +#define FIDO2_ALG_RS512 -259 #define FIDO2_CURVE_P256 1 #define FIDO2_CURVE_P384 2