Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

expo-standard-web-crypto

Package Overview
Dependencies
Maintainers
26
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

expo-standard-web-crypto

A partial implementation of the W3C Crypto API for Expo

  • 0.0.1-canary-20240405-cdfd9c1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9.7K
decreased by-13%
Maintainers
26
Weekly downloads
 
Created
Source

expo-standard-crypto

A partial implementation of the W3C Crypto API for Expo

API documentation

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.

Installation in Expo projects

First follow the instructions for installing expo-crypto, which is required by this package. Then install this package.

Add the package to your npm dependencies

npm install expo-standard-web-crypto

Using the polyfill

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.

Contributing

Contributions are very welcome! Please refer to guidelines described in the contributing guide.

Keywords

FAQs

Package last updated on 05 Apr 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc