Home | History | Annotate | Download | only in conscrypt

Lines Matching defs:algorithm

24  * the appropriate KeyFactory for the key algorithm is not available.
32 private final String algorithm;
36 public X509PublicKey(String algorithm, byte[] encoded) {
37 this.algorithm = algorithm;
43 return algorithm;
58 return "X509PublicKey [algorithm=" + algorithm + ", encoded=" + Arrays.toString(encoded)
66 result = prime * result + ((algorithm == null) ? 0 : algorithm.hashCode());
80 if (algorithm == null) {
81 if (other.algorithm != null)
83 } else if (!algorithm.equals(other.algorithm))