We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8d9c0c commit adaab4dCopy full SHA for adaab4d
lib/toolbox.js
@@ -24,13 +24,11 @@ import * as peculiarCrypto from "@peculiar/webcrypto";
24
let webcrypto;
25
if ((typeof self !== "undefined") && "crypto" in self) {
26
// Always use crypto if available natively (browser / Deno)
27
- console.warn("[FIDO2-LIB] Native crypto is enabled");
28
webcrypto = self.crypto;
29
30
} else {
31
// Always use node webcrypto if available ( >= 16.0 )
32
if(platformCrypto && platformCrypto.webcrypto) {
33
34
webcrypto = platformCrypto.webcrypto;
35
36
0 commit comments