Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/signedcontent/SignerInfo.java')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/signedcontent/SignerInfo.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/signedcontent/SignerInfo.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/signedcontent/SignerInfo.java
index 4d62547b4..538415f75 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/signedcontent/SignerInfo.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/signedcontent/SignerInfo.java
@@ -46,13 +46,13 @@ public interface SignerInfo {
public boolean isTrusted();
/**
- * Returns the <code>MessageDigest</code> algorithm used to verify content signed by this
- * signer info.
+ * Returns the <code>MessageDigest</code> algorithm used to verify content
+ * signed by this signer info.
+ *
* @return the algorithm
+ * @deprecated This information is not readily available using the JAR APIs
+ * included with Java. A value {@literal unknown} will be returned.
*/
public String getMessageDigestAlgorithm();
- // TODO need more thought here, TrustEngines could get stale since they are services, leaving off for now unless until we understand the usecase for this.
- //public TrustEngine getTrustEngine();
-
}

Back to the top