aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/pki/crl/CertificateListContent.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/model/pki/crl/CertificateListContent.java')
-rw-r--r--src/main/model/pki/crl/CertificateListContent.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main/model/pki/crl/CertificateListContent.java b/src/main/model/pki/crl/CertificateListContent.java
index c7e901d..4cc96fb 100644
--- a/src/main/model/pki/crl/CertificateListContent.java
+++ b/src/main/model/pki/crl/CertificateListContent.java
@@ -31,7 +31,7 @@ import java.util.stream.Stream;
* ...,
* crlExtensions [0] Extensions OPTIONAL }
* </pre>
- *
+ * <p>
* A CRL is a signed object published by the CA that revokes any certificates signed by this CA before their
* expiration. Relying-parties should check the CRL from corresponding CDPs to see if the certificate to check is
* already revoked.
@@ -70,12 +70,12 @@ public class CertificateListContent extends ASN1Object {
.flatMap(Arrays::stream)
.collect(Collectors.toList());
return Stream.of(Arrays.asList(version.encodeDER()),
- Arrays.asList(signature.encodeDER()),
- Arrays.asList(issuer.encodeDER()),
- Arrays.asList(thisUpdate.encodeDER()),
- nextUpdate == null ? Collections.<Byte>emptyList() : Arrays.asList(nextUpdate.encodeDER()),
- Arrays.asList(new Tag(TagClass.UNIVERSAL, true, 0x30).encodeDER()),
- Arrays.asList(new ASN1Length(itemsEncoded.size()).encodeDER()), itemsEncoded)
+ Arrays.asList(signature.encodeDER()),
+ Arrays.asList(issuer.encodeDER()),
+ Arrays.asList(thisUpdate.encodeDER()),
+ nextUpdate == null ? Collections.<Byte>emptyList() : Arrays.asList(nextUpdate.encodeDER()),
+ Arrays.asList(new Tag(TagClass.UNIVERSAL, true, 0x30).encodeDER()),
+ Arrays.asList(new ASN1Length(itemsEncoded.size()).encodeDER()), itemsEncoded)
.flatMap(Collection::stream)
.toArray(Byte[]::new);
}