UNPKG

react-native-aes-ecb

Version:

A pure JavaScript implementation of the AES block cipher algorithm with additional features for react-native.

7 lines (6 loc) 153 B
const encryptor = require('./encryptor'); const decryptor = require('./decryptor'); module.exports = { encrypt: encryptor, decrypt: decryptor, }