We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello! Is it possible to add configurable hasher prop for PBKDF2 in that module?
In CryptoJS there is a hasher prop in config.
hasher
const encryptionKey = CryptoJS.PBKDF2( pin, salt, { keySize: 4, hasher: CryptoJS.algo.SHA256, // <----------- about this iterations: 10000, }, );
In react-native-aes I see what that an adhoc solution and it uses SHA512:
react-native-aes
PKCS5S2ParametersGenerator gen = new PKCS5S2ParametersGenerator(new SHA512Digest());
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello!
Is it possible to add configurable hasher prop for PBKDF2 in that module?
In CryptoJS there is a
hasher
prop in config.In
react-native-aes
I see what that an adhoc solution and it uses SHA512:https://github.com/tectiv3/react-native-aes/blob/master/android/src/main/java/com/tectiv3/aes/RCTAes.java#L167
The text was updated successfully, but these errors were encountered: