Commit ccdef805 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

bcrypt: Do not error out for GNUTLS_ECC_CURVE_SECP384R1 in key_export_ecc().

parent 523a7f82
......@@ -1075,7 +1075,7 @@ static NTSTATUS key_export_ecc( struct key *key, UCHAR *buf, ULONG len, ULONG *r
return STATUS_INTERNAL_ERROR;
}
if (curve != GNUTLS_ECC_CURVE_SECP256R1)
if (curve != GNUTLS_ECC_CURVE_SECP256R1 && curve != GNUTLS_ECC_CURVE_SECP384R1)
{
FIXME( "curve %u not supported\n", curve );
free( x.data ); free( y.data ); free( d.data );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment