| Index: Source/modules/crypto/SubtleCrypto.cpp
|
| diff --git a/Source/modules/crypto/SubtleCrypto.cpp b/Source/modules/crypto/SubtleCrypto.cpp
|
| index af832794e0f14e8b5a2b4aa026bc687a6edf4442..68279e159c5acaa92c58d7216ad4ef1cbd1f5447 100644
|
| --- a/Source/modules/crypto/SubtleCrypto.cpp
|
| +++ b/Source/modules/crypto/SubtleCrypto.cpp
|
| @@ -180,7 +180,7 @@ static bool copyJwkDictionaryToJson(const Dictionary& dict, CString& jsonUtf8, C
|
| if (DictionaryHelper::get(dict, "ext", ext))
|
| jsonObject->setBoolean("ext", ext);
|
|
|
| - const char* const propertyNames[] = { "d", "n", "e", "p", "q", "dp", "dq", "qi", "k" };
|
| + const char* const propertyNames[] = { "d", "n", "e", "p", "q", "dp", "dq", "qi", "k", "crv", "x", "y" };
|
| for (unsigned i = 0; i < WTF_ARRAY_LENGTH(propertyNames); ++i)
|
| copyStringProperty(propertyNames[i], dict, jsonObject.get());
|
|
|
|
|