문제

I would like to know whether there are any alternative libraries like JASYPT , which can help me in Encryption / Decryption of passwords.

도움이 되었습니까?

해결책

Yes, there are some. I'm not sure what exactly are you looking for, but I have been using BouncyCastle with great success. Maybe it will interest you as well.

다른 팁

Check out the java security API. It includes a large set of security algorithms and mechanisms for various purposes. http://www.oracle.com/technetwork/java/javase/tech/index-jsp-136007.html

While looking for implementing crypt functionality, I came across keyczar https://github.com/google/keyczar.

It offers pretty simple api to invoke crypt functions as

Crypter crypter = new Crypter("/path/to/your/keys");
String ciphertext = crypter.encrypt("Secret message");

It also provides api for java/python/cpp languages, and was originally developed by Google security team.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top