react-native-aes-crypto
Advanced tools
Comparing version 3.0.2 to 3.0.3
{ | ||
"name": "react-native-aes-crypto", | ||
"version": "3.0.2", | ||
"version": "3.0.3", | ||
"description": "AES crypto native module for react-native", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -86,3 +86,3 @@ # React Native AES | ||
const generateKey = (password, salt, cost, length) => Aes.pbkdf2(password, salt, cost, length) | ||
const generateKey = (password, salt, cost, length) => Aes.pbkdf2(password, salt, cost, length, 'sha256') | ||
@@ -89,0 +89,0 @@ const encryptData = (text, key) => { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
45869