
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
@walletconnect/crypto
Advanced tools
Isomorphic Cryptography Library for AES, HMAC and SHA2
This library supports AES, HMAC and SHA2 methods through native NodeJS and Browser APIs when available and fallbacks to vanilla javascript are already provided.
import * as isoCrypto from "iso-crypto";
const length = 32;
const key = isoCrypto.randomBytes(length);
// key.length === length
import * as isoCrypto from "iso-crypto";
import * as encoding from "@walletconnect/encoding";
const key = isoCrypto.randomBytes(32);
const iv = isoCrypto.randomBytes(16);
const str = "test message to encrypt";
const msg = encoding.utf8ToArray(str);
const ciphertext = await isoCrypto.aesCbcEncrypt(iv, key, msg);
const decrypted = await isoCrypto.aesCbcDecrypt(iv, key, ciphertext);
// decrypted === str
import * as isoCrypto from "iso-crypto";
import * as encoding from "@walletconnect/encoding";
const key = isoCrypto.randomBytes(32);
const iv = isoCrypto.randomBytes(16);
const macKey = encoding.concatArrays(iv, key);
const dataToMac = encoding.concatArrays(iv, key, msg);
const mac = await isoCrypto.hmacSha256Sign(macKey, dataToMac);
const result = await isoCrypto.hmacSha256Verify(macKey, dataToMac, mac);
// result will return true if match
import * as isoCrypto from "iso-crypto";
import * as encoding from "@walletconnect/encoding";
// SHA256
const str = "test message to hash";
const msg = encoding.utf8ToArray(str);
const hash = await isoCrypto.sha256(str);
// SHA512
const str = "test message to hash";
const msg = encoding.utf8ToArray(str);
const hash = await isoCrypto.sha512(str);
This library is intended for use in a Browser or NodeJS environment, however it is possible to use in a React-Native environment if NodeJS modules are polyfilled with react-native-crypto
, read more here.
FAQs
Isomorphic Cryptography Library for AES, HMAC and SHA2
The npm package @walletconnect/crypto receives a total of 83,903 weekly downloads. As such, @walletconnect/crypto popularity was classified as popular.
We found that @walletconnect/crypto demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 12 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.