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:
Diffstat (limited to 'core/src/main/java/org/bouncycastle/asn1/cms/OtherKeyAttribute.java')
-rw-r--r--core/src/main/java/org/bouncycastle/asn1/cms/OtherKeyAttribute.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/core/src/main/java/org/bouncycastle/asn1/cms/OtherKeyAttribute.java b/core/src/main/java/org/bouncycastle/asn1/cms/OtherKeyAttribute.java
index 9c62a0c6..6a8656e1 100644
--- a/core/src/main/java/org/bouncycastle/asn1/cms/OtherKeyAttribute.java
+++ b/core/src/main/java/org/bouncycastle/asn1/cms/OtherKeyAttribute.java
@@ -9,7 +9,8 @@ import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERSequence;
/**
- * <a href="http://tools.ietf.org/html/rfc5652#section-10.2.7">RFC 5652</a>:
+ * <a href="http://tools.ietf.org/html/rfc5652#section-10.2.7">RFC 5652</a>: OtherKeyAttribute object.
+ * <p>
* <pre>
* OtherKeyAttribute ::= SEQUENCE {
* keyAttrId OBJECT IDENTIFIER,
@@ -24,13 +25,13 @@ public class OtherKeyAttribute
private ASN1Encodable keyAttr;
/**
- * return an OtherKeyAttribute object from the given object.
+ * Return an OtherKeyAttribute object from the given object.
* <p>
* Accepted inputs:
* <ul>
- * <li> null -> null
+ * <li> null &rarr; null
* <li> {@link OtherKeyAttribute} object
- * <li> {@link org.bouncycastle.asn1.ASN1Sequence ASN1Sequence} input formats with OtherKeyAttribute structure inside
+ * <li> {@link org.bouncycastle.asn1.ASN1Sequence#getInstance(java.lang.Object) ASN1Sequence} input formats with OtherKeyAttribute structure inside
* </ul>
*
* @param o the object we want converted.