|
I implemented it for doing encryption in some of my small Java projects.
In Java, the "official" way to do encryption is to use the
Java Cryptography Extension (JCE).
JCE is available as a separate package for JDK 1.2 and 1.3. It is now integrated into JDK 1.4.
However, JCE is too heavy for some of my projects. All I need is a simple class that
can do RC4 encryption and decryption, without complicated key generation and agreement etc.
However, if you need encryption for a "real" application, I strongly recommend you
to use JCE. Also,
Cryptix is
a free implementation of JCE that worth a try.
|