Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
expo-standard-web-crypto
Advanced tools
A partial implementation of the W3C Crypto API for Expo
This package provides a partial polyfill of the W3C Crypto API for Expo. Namely, Crypto#getRandomValues()
is implemented. See the W3C Crypto specification for the API documentation.
First follow the instructions for installing expo-crypto
, which is required by this package. Then install this package.
npm install expo-standard-web-crypto
There are two ways to use this package: you can import a Crypto
instance or you can globally define crypto
. Some code may expect the latter.
Importing a Crypto
instance:
import crypto from 'expo-standard-web-crypto';
Globally defining crypto
:
import { polyfillWebCrypto } from 'expo-standard-web-crypto';
polyfillWebCrypto();
// crypto is now globally defined
In either case, if your runtime environment already defines crypto
globally, this package uses that instance instead of providing its own.
Contributions are very welcome! Please refer to guidelines described in the contributing guide.
FAQs
A partial implementation of the W3C Crypto API for Expo
The npm package expo-standard-web-crypto receives a total of 9,202 weekly downloads. As such, expo-standard-web-crypto popularity was classified as popular.
We found that expo-standard-web-crypto demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.