@gibme/crypto-browser
v20.0.1
Published
Web Browser Lazy-Loading Advanced Cryptographic Functions provided by @gibme/crypto
Readme
@gibme/crypto-browser
This package provides a browser-ready version of @gibme/crypto. It will dynamically load either the WASM or ASM.js version of the package upon initialization.
Documentation
You can find the full TypeScript/JS documentation for this library here.
import Crypto from '@gibme/crypto-browser';
(async () => {
const crypto = await Crypto.init();
console.log(await crypto.generate_keys());
})();