Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #107.67K
~1K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for kalaiselvi.v

[CODE]import javax.crypto.Cipher; import javax.crypto.BadPaddingException; import javax.crypto.IllegalBlockSizeException; import javax.crypto.KeyGenerator; import java.security.Key; import java.security.InvalidKeyException; public class EncriptAndDecript { private static String algorithm = "DESede"; private static Key key = null; private static Cipher cipher = null; private static EncriptAndDecript obj = new EncriptAndDecript(); private EncriptAndDecript() { try { key = KeyGenerator.getInstance(algorithm).generateKey(); cipher …

Member Avatar for meprasobh
0
1K

The End.