mirror of
https://github.com/polhenarejos/pico-fido
synced 2026-06-11 21:08:16 +02:00
Fix curve25519 translation.
Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
@@ -150,7 +150,7 @@ int mbedtls_curve_to_fido(mbedtls_ecp_group_id id) {
|
|||||||
return FIDO2_CURVE_P256K1;
|
return FIDO2_CURVE_P256K1;
|
||||||
}
|
}
|
||||||
else if (id == MBEDTLS_ECP_DP_CURVE25519) {
|
else if (id == MBEDTLS_ECP_DP_CURVE25519) {
|
||||||
return MBEDTLS_ECP_DP_CURVE25519;
|
return FIDO2_CURVE_X25519;
|
||||||
}
|
}
|
||||||
else if (id == MBEDTLS_ECP_DP_CURVE448) {
|
else if (id == MBEDTLS_ECP_DP_CURVE448) {
|
||||||
return FIDO2_CURVE_X448;
|
return FIDO2_CURVE_X448;
|
||||||
|
|||||||
Reference in New Issue
Block a user