Socket
Socket
Sign inDemoInstall

@trackforce/react-native-aes-crypto

Package Overview
Dependencies
0
Maintainers
3
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @trackforce/react-native-aes-crypto

AES crypto native module for react-native


Version published
Weekly downloads
4
Maintainers
3
Install size
33.6 kB
Created
Weekly downloads
 

Readme

Source

React Native AES

AES encryption/decryption for react-native

Installation

npm install @trackforce/react-native-aes-crypto

or

yarn add @trackforce/react-native-aes-crypto

Linking Automatically

react-native link

Linking Manually

iOS
  • See Linking Libraries OR
  • Drag RCTAes.xcodeproj to your project on Xcode.
  • Click on your main project file (the one that represents the .xcodeproj) select Build Phases and drag libRCTAes.a from the Products folder inside the RCTAes.xcodeproj.
(Android)
...
include ':@trackforce/react-native-aes-crypto'
project(':@trackforce/react-native-aes-crypto').projectDir = new File(rootProject.projectDir, '../node_modules/@trackforce/react-native-aes-crypto/android')
  • In android/app/build.gradle
...
dependencies {
    ...
    compile project(':@trackforce/react-native-aes-crypto')
}
  • register module (in MainApplication.java)
......
import com.trackforce.aes.RCTAesPackage;

......

@Override
protected List<ReactPackage> getPackages() {
   ......
   new RCTAesPackage(),
   ......
}

Usage

Example

import AES from '@trackforce/react-native-aes-crypto';

function generateKey(password, salt) {
    return AES.pbkdf2(password, salt);
}

async function encrypt(text, key) {
    const iv = 'base 64 random 16 bytes string';
    try {
        const ciphertext = await AES.encrypt(text, key, iv);
        return { ciphertext, iv };
    } catch (error) {
        throw error;
    }
}

function decrypt(ciphertext, key, iv) {
    return AES.decrypt(ciphertext, key, iv);
}

function hmac(ciphertext, key) {
    return AES.hmac256(ciphertext, key);
}

(async () => {
    try {
        const generatedKey = await generateKey('password', 'salt');
        console.log(`generatedKey: ${generatedKey}`);

        const { ciphertext, iv } = await encrypt('Hello, world!', generatedKey);
        console.log(`ciphertext: ${ciphertext}, iv: ${iv}`);

        const decryptedText = await decrypt(ciphertext, generatedKey, iv);
        console.log(`decrypted: ${decryptedText}`);

        const hash = await hmac(ciphertext, generatedKey);
        console.log(`hash: ${hash}`);
    } catch (error) {
        throw error;
    }
})();

methods

  • encrypt(text, key, iv)
  • decrypt(base64, key, iv)
  • pbkdf2(text, salt)
  • hmac256(cipher, key)
  • sha1(text)
  • sha256(text)
  • sha512(text)

Keywords

FAQs

Last updated on 08 Aug 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc