1.0.4 • Published 3 years ago

@particle/react-native-crypto v1.0.4

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
3 years ago

@particle/react-native-crypto

React Native compatible crypto functions

Installation

npm install @particle/react-native-crypto --save

NOTE: @particle/react-native-crypto declares react-native and @particle/device-constants as a peerDependency - this ensures your app only ever has one copy of those dependencies

API

ReactNativeAes128Cipher

A React Native class for an AES-128 cipher operating in ECB mode.

Kind: global class


reactNativeAes128Cipher.encryptBlock(block) ⇒ Promise.<Uint8Array>

Encrypt a single block of data.

Kind: instance method of ReactNativeAes128Cipher
Returns: Promise.<Uint8Array> - Ciphertext block.

ParamTypeDescription
blockUint8ArrayPlaintext block. The block must be 16 bytes long.

ReactNativeEnv

A React Native environment class.

Kind: global class


reactNativeEnv.createAes128Cipher(key) ⇒ Aes128Cipher

Create an AES-128 cipher operating in ECB mode.

Kind: instance method of ReactNativeEnv
Returns: Aes128Cipher - Cipher object.

ParamTypeDescription
keyUint8ArrayEncryption key. The key must be 16 bytes long.

reactNativeEnv.getRandomBytes(size) ⇒ Promise.<Uint8Array>

Generate cryptographically strong random data.

Kind: instance method of ReactNativeEnv
Returns: Promise.<Uint8Array> - Random data.

ParamTypeDescription
sizeNumberNumber of bytes to generate.

NOTE: Unfortunately, docs have a nasty habit of falling out of date. When in doubt, check usage in tests