Home | History | Annotate | Download | only in sign

Lines Matching defs:keyAlgorithm

36     @Nonnull public final String keyAlgorithm;
52 * @param keyAlgorithm the name as reported by {@code PrivateKey}
57 @Nonnull String keyAlgorithm, int minSdkVersion, @Nonnull String signatureAlgorithmSuffix) {
58 this.keyAlgorithm = keyAlgorithm;
67 * @param keyAlgorithm the named referred in the {@code PrivateKey}
69 * @return the algorithm that has {@link #keyAlgorithm} equal to {@code keyAlgorithm}
74 public static SignatureAlgorithm fromKeyAlgorithm(@Nonnull String keyAlgorithm,
77 if (alg.keyAlgorithm.equalsIgnoreCase(keyAlgorithm)) {
79 throw new NoSuchAlgorithmException("Signatures with " + keyAlgorithm
89 throw new NoSuchAlgorithmException("Signing with " + keyAlgorithm