An open API service indexing awesome lists of open source software.

https://github.com/linusu/react-native-webcrypto

WebCrypto implementation for React Native
https://github.com/linusu/react-native-webcrypto

Last synced: about 1 year ago
JSON representation

WebCrypto implementation for React Native

Awesome Lists containing this project

README

          

# react-native-webcrypto

WebCrypto implementation for React Native.

## Installation

```sh
npm install --save react-native-webcrypto
react-native link
```

## Usage

```javascript
import 'react-native-webcrypto'

// The WebCrypto API is now available:
crypto.subtle
```

## Implementation Status

Feature | iOS | Android
----- | ------ | ------
**AES-GCM** | |
— `importKey` | 🚫 | ✅
— `encrypt` | 🚫 | ✅
— `decrypt` | 🚫 | ✅
**HKDF** | |
— `importKey` | 🚫 | ✅
— `deriveBits` | 🚫 | ✅
**PBKDF2** | |
— `importKey` | 🚫 | ✅
— `deriveBits` | 🚫 | ✅