aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/csr/Values.java
diff options
context:
space:
mode:
authorYuuta Liang <yuutaw@students.cs.ubc.ca>2023-10-12 12:10:33 +0800
committerYuuta Liang <yuutaw@students.cs.ubc.ca>2023-10-12 12:10:33 +0800
commitd342a45d98c4795b3a3fe1aaef5236ad4a782b55 (patch)
treef4ebc0ad962b138d9371413fcc71c97a559df506 /src/main/model/csr/Values.java
parente60c9c76243cfe0a408af98dc60bedb973e815db (diff)
downloadjca-d342a45d98c4795b3a3fe1aaef5236ad4a782b55.tar
jca-d342a45d98c4795b3a3fe1aaef5236ad4a782b55.tar.gz
jca-d342a45d98c4795b3a3fe1aaef5236ad4a782b55.tar.bz2
jca-d342a45d98c4795b3a3fe1aaef5236ad4a782b55.zip
Implement data structures from X.680, X.501, X.509, and PKCS#10, with X.690 encoding / decoding support
The implementation took four days, and it is still a little bit rough. Updated version should arrive soon. Signed-off-by: Yuuta Liang <yuutaw@students.cs.ubc.ca>
Diffstat (limited to 'src/main/model/csr/Values.java')
-rw-r--r--src/main/model/csr/Values.java69
1 files changed, 69 insertions, 0 deletions
diff --git a/src/main/model/csr/Values.java b/src/main/model/csr/Values.java
new file mode 100644
index 0000000..5c1e212
--- /dev/null
+++ b/src/main/model/csr/Values.java
@@ -0,0 +1,69 @@
+package model.csr;
+
+import model.asn1.ASN1Object;
+import model.asn1.Encodable;
+import model.asn1.Tag;
+import model.asn1.exceptions.ParseException;
+import model.asn1.parsing.BytesReader;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+import java.util.stream.Stream;
+
+/**
+ * Represents a CSR attribute values list.
+ * <pre>
+ * Attribute { ATTRIBUTE:IOSet } ::= SEQUENCE {
+ * type ATTRIBUTE.&id({IOSet}),
+ * values SET SIZE(1..MAX) OF ATTRIBUTE.&Type({IOSet}{@type})
+ * }
+ * </pre>
+ * Values can be none or any length. Parsing and decoding the values are handled in specific types.
+ */
+public class Values extends ASN1Object {
+ private final ASN1Object[] array;
+
+ /**
+ * EFFECT: Initialize the list with the given tag, parentTag, and array. For tag and parentTag, consult
+ * {@link ASN1Object}.
+ * REQUIRES: All elements in the array shall be the same ASN.1 type.
+ */
+ public Values(Tag tag, Tag parentTag, ASN1Object[] array) {
+ super(tag, parentTag);
+ this.array = array;
+ }
+
+ /**
+ * EFFECT: Parse the list from input DER bytes. For details on parsing, refer to {@link ASN1Object}.
+ * Throws {@link ParseException} for invalid input.
+ * MODIFIES: this, encoded
+ */
+ public Values(BytesReader encoded, boolean hasParentTag) throws ParseException {
+ super(encoded, hasParentTag);
+ final List<ASN1Object> list = new ArrayList<>();
+ for (int i = 0; i < getLength();) {
+ int index = encoded.getIndex();
+ final ASN1Object value = ASN1Object.parse(encoded, false);
+ list.add(value);
+ index = encoded.getIndex() - index;
+ i += index;
+ }
+ this.array = list.toArray(new ASN1Object[0]);
+ }
+
+ /**
+ * EFFECTS: Encode the SET OF into DER, keep order. Values will be encoded one-by-one.
+ */
+ @Override
+ public Byte[] encodeValueDER() {
+ return Stream.of(array)
+ .map(Encodable::encodeDER)
+ .flatMap(Arrays::stream)
+ .toArray(Byte[]::new);
+ }
+
+ public ASN1Object[] getArray() {
+ return array;
+ }
+}