You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On versions 3.x.x and on latter versions 2 (the last I've found working is 2.2.1) the function verify is broken. More specifically the internal call to crypto.subtle.verify yields:
[TypeError: Failed to execute 'verify' on 'SubtleCrypto': 3rd argument is not instance of ArrayBuffer, Buffer, TypedArray, or DataView.] {
code: 'ERR_INVALID_ARG_TYPE'
}
This is due to the signature being a Uint8Array.buffer. When converted to a Uint8Array it works.
The text was updated successfully, but these errors were encountered:
On versions
3.x.x
and on latter versions2
(the last I've found working is2.2.1
) the functionverify
is broken. More specifically the internal call tocrypto.subtle.verify
yields:This is due to the signature being a
Uint8Array.buffer
. When converted to aUint8Array
it works.The text was updated successfully, but these errors were encountered: