I tried to use shared ArrayBuffer view along with crypto api. Didn't work
crypto.getRandomValues(new Uint8Array(new SharedArrayBuffer(1)))
crypto.subtle.digest(algo, sharedBuffer)
Failed to execute 'getRandomValues' on 'Crypto':
The provided ArrayBufferView value must not be shared.
Failed to execute 'digest' on 'SubtleCrypto':
The provided ArrayBufferView value must not be shared.
Is there any reason why it would not be allowed? didn't find any issue or text in the spec mention anything about sharedArrayBuffer
I tried to use shared ArrayBuffer view along with crypto api. Didn't work
Is there any reason why it would not be allowed? didn't find any issue or text in the spec mention anything about sharedArrayBuffer