Android compatible algorithm for PBKDF2WithHmacSHA1

I am developing an Android application in which I need to decrypt files encrypted by my C # project. The problem is that I can do the same for a java project, but in android this is an exception. help would be greatly appreciated if someone tells me PBKDF2WithHmacSHA1 compatible algorithm for Android. Thanks!

+4
source share
1 answer

WITH#? Are you using Mono for Android?

I think someone out there said that there is a lot of stuff in the BouncyCastle library that Android is running on, including PBKDF2. However, some good people have created SpongyCastle so you can use BC with SC. SpongyCastle is a BouncyCastle, but with class names renamed

0
source

Source: https://habr.com/ru/post/1348066/


All Articles