We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 241f59b commit 6d4b9f0Copy full SHA for 6d4b9f0
deno.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@tls/enum",
3
- "version": "0.6.5",
+ "version": "0.6.6",
4
"exports": "./src/mod.ts",
5
"publish": {
6
"exclude": ["dist/"]
src/contentype.js
@@ -140,8 +140,8 @@ export class TLSCiphertext extends Uint8Array {
140
struct.set(lengthOf, 3);
141
struct.set(encrypted_record, 5);
142
super(struct)
143
- this.header = struct.subarray(0, 5);
144
- this.encrypted_record = encrypted_record
+ this.header = Uint8Array.from(struct.subarray(0, 5));
+ this.encrypted_record = Uint8Array.from(encrypted_record)
145
}
146
147
0 commit comments