Home
last modified time | relevance | path

Searched refs:hashedData (Results 1 – 6 of 6) sorted by relevance

/expo/packages/expo-crypto/build/
H A DExpoCrypto.web.js14 const hashedData = await crypto.subtle.digest(algorithm, buffer); constant
16 return hexString(hashedData);
19 return btoa(String.fromCharCode(...new Uint8Array(hashedData)));
H A DExpoCrypto.web.js.map1hashedData = await crypto.subtle.digest(algorithm, buffer);\n if (options.encoding === CryptoEn…
/expo/packages/expo-crypto/src/
H A DExpoCrypto.web.ts24 const hashedData = await crypto.subtle.digest(algorithm, buffer); constant
26 return hexString(hashedData);
28 return btoa(String.fromCharCode(...new Uint8Array(hashedData)));
/expo/packages/expo-web-browser/build/
H A DExpoWebBrowser.web.js198 const hashedData = await crypto.subtle.digest('SHA-256', buffer);
199 const state = btoa(String.fromCharCode(...new Uint8Array(hashedData)));
H A DExpoWebBrowser.web.js.map1 …;\n const hashedData = await crypto.subtle.digest('SHA-256', buffer);\n const state = btoa(Strin…
/expo/packages/expo-web-browser/src/
H A DExpoWebBrowser.web.ts249 const hashedData = await crypto.subtle.digest('SHA-256', buffer); constant
250 const state = btoa(String.fromCharCode(...new Uint8Array(hashedData)));