aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/asn1/BitString.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/model/asn1/BitString.java')
-rw-r--r--src/main/model/asn1/BitString.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/model/asn1/BitString.java b/src/main/model/asn1/BitString.java
index 0561f24..3b4c32e 100644
--- a/src/main/model/asn1/BitString.java
+++ b/src/main/model/asn1/BitString.java
@@ -22,7 +22,7 @@ import java.math.BigInteger;
* 0b 00000110 01101110 01011101 11000000
* ^ 6 ^ ^ Original Number ^^Pad^
* </pre>
- *
+ * <p>
* BIT STRING has nothing to do with encoding bytes as printable strings (base10 or base16 or ASCII).
*/
public class BitString extends ASN1Object {
@@ -48,10 +48,10 @@ public class BitString extends ASN1Object {
/**
* EFFECT: Parse the input DER.
- * Throws {@link ParseException} if the input is invalid:
- * - Unused is not in 0 <= unused < 8
- * - The last byte does not have its lowest $unused bits zero
- * - Other issues found according to {@link ASN1Object}
+ * Throws {@link ParseException} if the input is invalid:
+ * - Unused is not in 0 <= unused < 8
+ * - The last byte does not have its lowest $unused bits zero
+ * - Other issues found according to {@link ASN1Object}
*/
public BitString(BytesReader encoded, boolean hasParentTag) throws ParseException {
super(encoded, hasParentTag);