summaryrefslogtreecommitdiff
path: root/android_bcpkix/src/main/java/com/android/org/bouncycastle/operator/SignatureAlgorithmIdentifierFinder.java
diff options
context:
space:
mode:
Diffstat (limited to 'android_bcpkix/src/main/java/com/android/org/bouncycastle/operator/SignatureAlgorithmIdentifierFinder.java')
-rw-r--r--android_bcpkix/src/main/java/com/android/org/bouncycastle/operator/SignatureAlgorithmIdentifierFinder.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/android_bcpkix/src/main/java/com/android/org/bouncycastle/operator/SignatureAlgorithmIdentifierFinder.java b/android_bcpkix/src/main/java/com/android/org/bouncycastle/operator/SignatureAlgorithmIdentifierFinder.java
new file mode 100644
index 00000000..135dfd72
--- /dev/null
+++ b/android_bcpkix/src/main/java/com/android/org/bouncycastle/operator/SignatureAlgorithmIdentifierFinder.java
@@ -0,0 +1,16 @@
+/* GENERATED SOURCE. DO NOT MODIFY. */
+package com.android.org.bouncycastle.operator;
+
+import com.android.org.bouncycastle.asn1.x509.AlgorithmIdentifier;
+
+public interface SignatureAlgorithmIdentifierFinder
+{
+ /**
+ * Find the signature algorithm identifier that matches with
+ * the passed in signature algorithm name.
+ *
+ * @param sigAlgName the name of the signature algorithm of interest.
+ * @return an algorithm identifier for the corresponding signature.
+ */
+ AlgorithmIdentifier find(String sigAlgName);
+} \ No newline at end of file