diff options
author | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2020-01-03 10:37:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-03 10:37:01 +0100 |
commit | 46039355e87825a9dce12ebaad0305d20eea3f43 (patch) | |
tree | 6b17c400a9b98d2a6ec367deeea9597ac2c78e5b /src/net/gcdc/asn1/uper/Document2.txt | |
parent | logging (diff) | |
download | UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar.gz UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar.bz2 UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar.lz UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar.xz UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar.zst UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.zip |
Diffstat (limited to 'src/net/gcdc/asn1/uper/Document2.txt')
-rw-r--r-- | src/net/gcdc/asn1/uper/Document2.txt | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/net/gcdc/asn1/uper/Document2.txt b/src/net/gcdc/asn1/uper/Document2.txt new file mode 100644 index 0000000..176ec23 --- /dev/null +++ b/src/net/gcdc/asn1/uper/Document2.txt @@ -0,0 +1,34 @@ + if (restrictionAnnotation.value() == CharacterRestriction.UTF8String) {
+ // UTF8 length
+ BitBuffer stringbuffer = ByteBitBuffer.createInfinite();
+
+ //char array replaced - begin
+ byte[] stringasbytearray = string.getBytes(StandardCharsets.UTF_8);
+
+ for (byte b: stringasbytearray){
+ UperEncoder.encodeConstrainedInt(stringbuffer, byte & 0xff, 0, 255);
+ }
+ //char array replaced - end
+
+ stringbuffer.flip();
+ if (stringbuffer.limit() % 8 != 0) {
+ throw new AssertionError("utf8 encoding resulted not in multiple of 8 bits");
+ }
+ int numOctets = (stringbuffer.limit() + 7) / 8; // Actually +7 is not needed here,
+ // since we already checked with %8.
+ int position1 = bitbuffer.position();
+ UperEncoder.encodeLengthDeterminant(bitbuffer, numOctets);
+ UperEncoder.logger.debug(String.format("UTF8String %s, length %d octets, encoded as %s", string, numOctets, bitbuffer.toBooleanStringFromPosition(position1)));
+ int position2 = bitbuffer.position();
+ for (int i = 0; i < stringbuffer.limit(); i++) {
+ bitbuffer.put(stringbuffer.get());
+ }
+ UperEncoder.logger.debug(String.format("UTF8String %s, encoded length %d octets, value bits: %s", string, numOctets, bitbuffer.toBooleanStringFromPosition(position2)));
+ return;
+
+
+
+
+
+
+new String(bytearray, StandardCharsets.UTF_8));
\ No newline at end of file |