Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Hook <dgh@cryptoworkshop.com>2013-07-26 06:43:52 +0400
committerDavid Hook <dgh@cryptoworkshop.com>2013-07-26 06:43:52 +0400
commit735e537f78d3bb6f90fadb2347a8543950808f80 (patch)
tree8655e668c083a93f90966a5804ca99d5c1f003c5 /core/src/main/java/org/bouncycastle/asn1/cms/AuthenticatedData.java
parent040413e21145db1c911d2ccc490054c97c6db35d (diff)
reviewed JavaDoc updates
Diffstat (limited to 'core/src/main/java/org/bouncycastle/asn1/cms/AuthenticatedData.java')
-rw-r--r--core/src/main/java/org/bouncycastle/asn1/cms/AuthenticatedData.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/src/main/java/org/bouncycastle/asn1/cms/AuthenticatedData.java b/core/src/main/java/org/bouncycastle/asn1/cms/AuthenticatedData.java
index 53958af9..c0945f3f 100644
--- a/core/src/main/java/org/bouncycastle/asn1/cms/AuthenticatedData.java
+++ b/core/src/main/java/org/bouncycastle/asn1/cms/AuthenticatedData.java
@@ -16,7 +16,7 @@ import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
/**
* <a href="http://tools.ietf.org/html/rfc5652#section-9.1">RFC 5652</a> section 9.1:
- * The AuthenticatedData carries {@link AuthAttributes authAttrs} and other data
+ * The AuthenticatedData carries AuthAttributes and other data
* which define what really is being signed.
* <p>
* <pre>
@@ -38,7 +38,6 @@ import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
* MessageAuthenticationCode ::= OCTET STRING
* </pre>
*/
-
public class AuthenticatedData
extends ASN1Object
{
@@ -82,6 +81,9 @@ public class AuthenticatedData
this.unauthAttrs = unauthAttrs;
}
+ /**
+ * @deprecated use getInstance()
+ */
public AuthenticatedData(
ASN1Sequence seq)
{