Home | History | Annotate | Download | only in x509

Lines Matching refs:algorithm

37  * with the Algorithm Identifier which is a part of X.509 certificate
45 * algorithm OBJECT IDENTIFIER,
46 * parameters ANY DEFINED BY algorithm OPTIONAL
52 // the value of algorithm field
53 private String algorithm;
54 // the name of the algorithm
63 * @param algorithm: String
65 public AlgorithmIdentifier(String algorithm) {
66 this(algorithm, null, null);
71 * @param algorithm: String
74 public AlgorithmIdentifier(String algorithm, byte[] parameters) {
75 this(algorithm, parameters, null);
80 // @param algorithm: String
84 private AlgorithmIdentifier(String algorithm, byte[] parameters,
86 this.algorithm = algorithm;
92 * Returns the value of algorithm field of the structure.
93 * @return algorithm
96 return algorithm;
100 * Returns the name of the algorithm corresponding to
102 * algorithm OID is returned.
103 * @return algorithm
107 algorithmName = AlgNameMapper.map2AlgName(algorithm);
109 algorithmName = algorithm;
139 return (algorithm.equals(algid.algorithm))
146 return algorithm.hashCode() * 37 +