Java encryption API + GUI

Is there a Windows program that allows users to encrypt a file so that it can be accessed through the Java API programmatically (i.e., decrypt it in memory)?

Hope this makes sense.

I guess the question is twofold

(1) Is there a free Java API for accessing / decrypting encrypted files? (2) Is there a free program that allows you to encrypt files supported by the API?

Thank.

Regards,

Christian

+3
source share
3 answers

BouncyCastle - Java ( #). ( Cryptix 2005 ). OpenPGP, , . , , , , ( OpenPGP).

+1

JCE PGP, cryptix. PGP , .

+1

Jasypt is a Java package that simplifies Java encryption. It works either with the built-in JCE provider or with others (e.g. BouncyCastle). There are basic command line applications included in it that you could use as a base for your own program.

0
source

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


All Articles