Home | History | Annotate | Download | only in security

Lines Matching defs:algorithm

92      * The Key algorithm
96 private String algorithm;
118 * @param algorithm the algorithm returned from
127 * if algorithm is {@code null},
131 public KeyRep(Type type, String algorithm,
134 if (type == null || algorithm == null ||
140 this.algorithm = algorithm;
151 * constructed using encoded key bytes and algorithm
153 * the key algorithm, constructs an X509EncodedKeySpec with the
156 * the key algorithm, constructs a PKCS8EncodedKeySpec with the
165 * combination is unrecognized, if the algorithm, key format, or
172 return new SecretKeySpec(encoded, algorithm);
174 KeyFactory f = KeyFactory.getInstance(algorithm);
177 KeyFactory f = KeyFactory.getInstance(algorithm);
190 "[" + algorithm + "] " +