Skip to content

Commit fc9ff57

Browse files
committed
update Enum version
1 parent 63bce40 commit fc9ff57

17 files changed

+39
-39
lines changed

deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tls/extension",
3-
"version": "0.6.3",
3+
"version": "0.6.4",
44
"exports": "./src/mod.ts",
55
"publish": {
66
"exclude": [
@@ -29,7 +29,7 @@
2929
"imports": {
3030
"@aicone/byte": "jsr:@aicone/byte@^0.8.8",
3131
"@std/assert": "jsr:@std/assert@^1.0.13",
32-
"@tls/enum": "jsr:@tls/enum@^0.9.8",
32+
"@tls/enum": "jsr:@tls/enum@^0.10.0",
3333
"@tls/parser": "jsr:@tls/parser@^0.0.3"
3434
}
3535
}

deno.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This project implements the [specific section] from
44
[RFC 8446](https://datatracker.ietf.org/doc/html/rfc8446#autoid-24), focusing on
55
the relevant TLS 1.3 protocol structures and processes.
6-
@version 0.6.3
6+
@version 0.6.4
77

88
## Work Status
99

type/certauth.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Represents a Distinguished Name as a `Uint8Array`.
3-
* @version 0.6.3
3+
* @version 0.6.4
44
*/
55
export declare class DistinguishedName extends Uint8Array {
66
#lengthOf: Uint8Array;
@@ -41,7 +41,7 @@ export declare class DistinguishedName extends Uint8Array {
4141

4242
/**
4343
* Represents a Certificate Authorities Extension as a `Uint8Array`.
44-
* @version 0.6.3
44+
* @version 0.6.4
4545
*/
4646
export declare class CertificateAuthoritiesExtension extends Uint8Array {
4747
#lengthOf: number;

type/cookie.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* opaque cookie<1..2^16-1>;
77
* } Cookie;
88
* ```
9-
* @version 0.6.3
9+
* @version 0.6.4
1010
*/
1111
export class Cookie extends Uint8Array {
1212
/**

type/edi.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Represents an empty byte array with a fixed length of zero.
3-
* @version 0.6.3
3+
* @version 0.6.4
44
*/
55
export class Empty extends Uint8Array {
66
/**
@@ -13,7 +13,7 @@ export class Empty extends Uint8Array {
1313
* Represents the Early Data Indication as described in
1414
* [RFC 8446 Section 4.2.10](https://datatracker.ietf.org/doc/html/rfc8446#section-4.2.10).
1515
* Extends `Uint8Array` to handle Early Data Indication functionality.
16-
* @version 0.6.3
16+
* @version 0.6.4
1717
*/
1818
export class EarlyDataIndication extends Uint8Array {
1919
/**

type/extension.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ExtensionType } from "@tls/enum";
33
/**
44
* Represents a TLS Extension as a byte array.
55
* Used in the TLS handshake process to store extension type and data.
6-
* @version 0.6.3
6+
* @version 0.6.4
77
*/
88
export declare class Extension extends Uint8Array {
99
/**

type/keyshare.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { NamedGroup } from "../src/dep.ts";
22

33
/**
44
* Represents a KeyShareEntry structure.
5-
* @version 0.6.3
5+
* @version 0.6.4
66
*/
77
export class KeyShareEntry extends Uint8Array {
88
/** Parses a KeyShareEntry from a NamedGroup */
@@ -23,7 +23,7 @@ export class KeyShareEntry extends Uint8Array {
2323

2424
/**
2525
* Represents the KeyShare extension in the ClientHello message.
26-
* @version 0.6.3
26+
* @version 0.6.4
2727
*/
2828
export class KeyShareClientHello extends Uint8Array {
2929
/**
@@ -54,7 +54,7 @@ export class KeyShareClientHello extends Uint8Array {
5454

5555
/**
5656
* Represents the KeyShare extension in the HelloRetryRequest message.
57-
* @version 0.6.3
57+
* @version 0.6.4
5858
*/
5959
export class KeyShareHelloRetryRequest extends Uint8Array {
6060
/**
@@ -83,7 +83,7 @@ export class KeyShareHelloRetryRequest extends Uint8Array {
8383

8484
/**
8585
* Represents the KeyShare extension in the ServerHello message.
86-
* @version 0.6.3
86+
* @version 0.6.4
8787
*/
8888
export class KeyShareServerHello extends Uint8Array {
8989
/**

type/offeredpsks.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ import { Uint32 } from "../src/dep.ts"
22

33
/**
44
* Represents a 32-bit unsigned integer value, extended from Uint32.
5-
* @version 0.6.3
5+
* @version 0.6.4
66
*/
77
export class TicketAge extends Uint32 {}
88

99

1010
/**
1111
* Represents an opaque identity<1..2^16-1>;
12-
* @version 0.6.3
12+
* @version 0.6.4
1313
*/
1414
export class Identity extends Uint8Array {
1515

@@ -56,7 +56,7 @@ export class Identity extends Uint8Array {
5656
message (Section 4.4.4) but with the BaseKey being the binder_key
5757
derived via the key schedule from the corresponding PSK which is
5858
being offered (see Section 7.1).
59-
@version 0.6.3
59+
@version 0.6.4
6060
*/
6161
export class PskBinderEntry extends Uint8Array {
6262

@@ -97,7 +97,7 @@ export class PskBinderEntry extends Uint8Array {
9797
established via the NewSessionTicket message. For identities
9898
established externally, an obfuscated_ticket_age of 0 SHOULD be
9999
used, and servers MUST ignore the value.
100-
@version 0.6.3
100+
@version 0.6.4
101101
*/
102102
export class PskIdentity extends Uint8Array {
103103
/**
@@ -136,7 +136,7 @@ export class PskIdentity extends Uint8Array {
136136
negotiate with the server. If sent alongside the "early_data"
137137
extension (see Section 4.2.10), the first identity is the one used
138138
for 0-RTT data.
139-
@version 0.6.3
139+
@version 0.6.4
140140
*/
141141
export class Identities extends Uint8Array {
142142
/**
@@ -173,7 +173,7 @@ export class Identities extends Uint8Array {
173173
* binders: A series of HMAC values, one for each value in the
174174
identities list and in the same order, computed as described
175175
below.
176-
@version 0.6.3
176+
@version 0.6.4
177177
*/
178178
export class Binders extends Uint8Array {
179179
/**
@@ -218,7 +218,7 @@ export class Binders extends Uint8Array {
218218
binders: A series of HMAC values, one for each value in the
219219
identities list and in the same order, computed as described
220220
below.
221-
@version 0.6.3
221+
@version 0.6.4
222222
*/
223223
export class OfferedPsks extends Uint8Array {
224224
/**

type/oidfilter.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* opaque certificate_extension_values<0..2^16-1>;
66
* } OIDFilter;
77
* ```
8-
* @version 0.6.3
8+
* @version 0.6.4
99
*/
1010
export declare class OIDFilter extends Uint8Array {
1111
certificate_extension_oid: CertificateExtensionOID;
@@ -37,7 +37,7 @@ export declare class OIDFilter extends Uint8Array {
3737
* OIDFilter filters<0..2^16-1>;
3838
* } OIDFilterExtension;
3939
* ```
40-
* @version 0.6.3
40+
* @version 0.6.4
4141
*/
4242
export declare class OIDFilterExtension extends Uint8Array {
4343
#oidFilters: OIDFilter[] | undefined;
@@ -71,7 +71,7 @@ export declare class OIDFilterExtension extends Uint8Array {
7171

7272
/**
7373
* Represents an opaque certificate_extension_oid<1..2^8-1>;
74-
* @version 0.6.3
74+
* @version 0.6.4
7575
*/
7676
export declare class CertificateExtensionOID extends Uint8Array {
7777
/**
@@ -103,7 +103,7 @@ export declare class CertificateExtensionOID extends Uint8Array {
103103

104104
/**
105105
* Represents an opaque certificate_extension_values<0..2^16-1>;
106-
* @version 0.6.3
106+
* @version 0.6.4
107107
*/
108108
export declare class CertificateExtensionValues extends Uint8Array {
109109
/**
@@ -134,7 +134,7 @@ export declare class CertificateExtensionValues extends Uint8Array {
134134
}
135135

136136
/**
137-
* @version 0.6.3
137+
* @version 0.6.4
138138
*/
139139
export declare class PostHandshakeAuth extends Uint8Array {
140140
constructor();

0 commit comments

Comments
 (0)