Amitesh Hati schrieb:
> Can some one help me with a sample program for 3DES encryption
> decryption using java cryptographic extension?
There are a lot of examples in the web available. You are probably only
missing the right keywords. Try:
desede jce example
> Can you please tell me how to generate a key from a static string?
Read the string, convert each two characters to one byte and create an
DESedeKeySpec() from the byte-array.
Jan