![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@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 1,176 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.