summaryrefslogtreecommitdiffstats
path: root/base/util/src/netscape/security/x509/Extension.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/util/src/netscape/security/x509/Extension.java')
-rw-r--r--base/util/src/netscape/security/x509/Extension.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/base/util/src/netscape/security/x509/Extension.java b/base/util/src/netscape/security/x509/Extension.java
index 7dc9e2890..8d575606a 100644
--- a/base/util/src/netscape/security/x509/Extension.java
+++ b/base/util/src/netscape/security/x509/Extension.java
@@ -27,16 +27,16 @@ import netscape.security.util.ObjectIdentifier;
/**
* Represent a X509 Extension Attribute.
- *
+ *
* <p>
* Extensions are addiitonal attributes which can be inserted in a X509 v3 certificate. For example a
* "Driving License Certificate" could have the driving license number as a extension.
- *
+ *
* <p>
* Extensions are represented as a sequence of the extension identifier (Object Identifier), a boolean flag stating
* whether the extension is to be treated as being critical and the extension value itself (this is again a DER encoding
* of the extension value).
- *
+ *
* <pre>
* ASN.1 definition of Extension:
* Extension ::= SEQUENCE {
@@ -45,7 +45,7 @@ import netscape.security.util.ObjectIdentifier;
* extensionValue OCTET STRING
* }
* </pre>
- *
+ *
* @author Amit Kapoor
* @author Hemma Prafullchandra
* @version 1.9
@@ -92,7 +92,7 @@ public class Extension implements Serializable {
/**
* Constructs an Extension from individual components of ObjectIdentifier,
* criticality and the DER encoded OctetString.
- *
+ *
* @param extensionId the ObjectIdentifier of the extension
* @param critical the boolean indicating if the extension is critical
* @param extensionValue the DER encoded octet string of the value.
@@ -110,7 +110,7 @@ public class Extension implements Serializable {
/**
* Constructs an Extension from another extension. To be used for
* creating decoded subclasses.
- *
+ *
* @param ext the extension to create from.
*/
public Extension(Extension ext) {
@@ -121,7 +121,7 @@ public class Extension implements Serializable {
/**
* Write the extension to the DerOutputStream.
- *
+ *
* @param out the DerOutputStream to write the extension to.
* @exception IOException on encoding errors
*/