- java.lang.Object
-
- com.ibm.crypto.ibmjcehybrid.provider.AlgorithmTable
-
public class AlgorithmTable extends java.lang.ObjectThis class contains all the algorithms supported by any underlying providers along with the underlying state data associated with those algorithms.
-
-
Constructor Summary
Constructors Constructor Description AlgorithmTable()Constructor
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static com.ibm.crypto.ibmjcehybrid.provider.TableObjectgetStateData(java.lang.String svcType, java.lang.String algorithm)This method gets the TableObject assocated with the service and algorithm requested.java.lang.StringtoString()Turns the AlgorithmTable object into a string.
-
-
-
Method Detail
-
getStateData
public static com.ibm.crypto.ibmjcehybrid.provider.TableObject getStateData(java.lang.String svcType, java.lang.String algorithm)This method gets the TableObject assocated with the service and algorithm requested.- Parameters:
svcType- The service type requestedalgorithm- The algorithm requested- Returns:
- TableObject The TableObject that contains the state data for the particular service type and algorithm. For example the state data associated with service type of Cipher and algorithm of DESede.
-
toString
public java.lang.String toString()
Turns the AlgorithmTable object into a string.- Overrides:
toStringin classjava.lang.Object- Returns:
- String The string representation of the Algorithm table object.
-
-