KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > oyster > crypto > consts > EnvelopedConstants


1 /*
2  * Title: Oyster Project
3  * Description: S/MIME email sending capabilities
4  * @Author Vladimir Radisic
5  * @Version 2.1.5
6  */

7
8 package org.enhydra.oyster.crypto.consts;
9
10 /**
11  * Types of symetric algorithms, currently suported by Oyster project.
12  */

13 public interface EnvelopedConstants extends KeyStoreConstants {
14
15   /**
16    * RC2 algorithm
17    */

18   public String JavaDoc RC2_CBC = "RC2_CBC";
19
20   /**
21    * DES algorithm
22    */

23   public String JavaDoc DES = "DES";
24
25   /**
26    * Triple DES algorithm
27    */

28   public String JavaDoc DES_EDE3_CBC = "DES_EDE3_CBC";
29 }
30
31
Popular Tags