Home | History | Annotate | Download | only in conscrypt

Lines Matching defs:algorithm

24  * the appropriate KeyFactory for the key algorithm is not available.
29 private final String algorithm;
33 X509PublicKey(String algorithm, byte[] encoded) {
34 this.algorithm = algorithm;
40 return algorithm;
55 return "X509PublicKey [algorithm=" + algorithm + ", encoded=" + Arrays.toString(encoded)
63 result = prime * result + ((algorithm == null) ? 0 : algorithm.hashCode());
77 if (algorithm == null) {
78 if (other.algorithm != null)
80 } else if (!algorithm.equals(other.algorithm))