@7h3/protocol 0.1.2 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (276) hide show
  1. package/.dockerignore +19 -0
  2. package/.github/dependabot.yml +32 -0
  3. package/.github/workflows/ci.yml +31 -0
  4. package/.github/workflows/publish.yml +59 -0
  5. package/.github/workflows/scorecard.yml +37 -0
  6. package/7h3.example.yaml +125 -0
  7. package/CHANGELOG.md +152 -0
  8. package/CONTRIBUTING.md +82 -0
  9. package/Dockerfile +73 -0
  10. package/GOVERNANCE.md +62 -0
  11. package/README.md +1317 -6
  12. package/SECURITY.md +70 -0
  13. package/bench-results/replay-cache-full-1777891033256.json +10 -0
  14. package/bench-results/replay-cache-full-1777896317488.json +10 -0
  15. package/bench-results/replay-cache-full-1777900993184.json +10 -0
  16. package/bench-results/replay-cache-full-1777901019285.json +10 -0
  17. package/bench-results/replay-cache-quick-1777870170126.json +10 -0
  18. package/bench-results/signature-profiles-quick-1775875160079.json +85 -0
  19. package/bench-results/signature-profiles-quick-1775983539716.json +85 -0
  20. package/bench-results/signature-profiles-quick-1776237913190.json +85 -0
  21. package/bench-results/wire-codecs-full-1777891019803.json +93 -0
  22. package/bench-results/wire-codecs-full-1777896260964.json +93 -0
  23. package/bench-results/wire-codecs-full-1777901004247.json +93 -0
  24. package/bench-results/wire-codecs-quick-1775972879056.json +93 -0
  25. package/bench-results/wire-codecs-quick-1775983541111.json +93 -0
  26. package/bench-results/wire-codecs-quick-1776237914299.json +93 -0
  27. package/bench-results/wire-codecs-quick-1777841285236.json +93 -0
  28. package/bench-results/wire-codecs-quick-1777841321772.json +93 -0
  29. package/bench-results/wire-codecs-quick-1777841330408.json +93 -0
  30. package/bench-results/wire-codecs-quick-1777852886082.json +93 -0
  31. package/bench-results/wire-codecs-quick-1777852988773.json +93 -0
  32. package/bench-results/wire-codecs-quick-1777870188095.json +93 -0
  33. package/bench-results/wire-codecs-quick-1777870263918.json +93 -0
  34. package/bench-results/wire-codecs-quick-1777870455034.json +93 -0
  35. package/bench-results/wire-codecs-quick-1778816163081.json +93 -0
  36. package/bench-results/wire-codecs-quick-1778843936130.json +93 -0
  37. package/bin/7h3.ts +406 -0
  38. package/conformance/7h3_v0_1.json +77 -0
  39. package/conformance/7h3_v0_1_binary.json +20 -0
  40. package/conformance/aip_v0_1_binary.json +20 -0
  41. package/docker-compose.yaml +77 -0
  42. package/docs/ADOPTION_PLAN.md +120 -0
  43. package/docs/AGENTS.md +77 -0
  44. package/docs/AIP_RFC_v0.1.md +97 -0
  45. package/docs/AI_DECISION_CARD.md +122 -0
  46. package/docs/AI_RUNTIME_POLICY.json +126 -0
  47. package/docs/AI_RUNTIME_POLICY.yaml +110 -0
  48. package/docs/BACKPRESSURE_TUNING.md +65 -0
  49. package/docs/BENCHMARK_CLAIM_MATRIX.md +42 -0
  50. package/docs/BENCHMARK_REPORT_TEMPLATE.md +169 -0
  51. package/docs/BINARY_CODEC_BENCH.md +23 -0
  52. package/docs/CLEAN_CLONE_RUNBOOK.md +36 -0
  53. package/docs/CLOCK_SKEW_POLICY.md +30 -0
  54. package/docs/DISTRIBUTED_REPLAY.md +142 -0
  55. package/docs/FUZZ_CAMPAIGN.md +121 -0
  56. package/docs/GATEWAY.md +195 -0
  57. package/docs/KEY_MANAGEMENT_POLICY.md +53 -0
  58. package/docs/KEY_REVOCATION.md +69 -0
  59. package/docs/MCP_WRAPPER.md +159 -0
  60. package/docs/MIGRATION_GUIDE.md +40 -0
  61. package/docs/OPERATORS.md +184 -0
  62. package/docs/PERF_REGRESSION_POLICY.md +34 -0
  63. package/docs/PROJECT_EXAMINATION_2026-05-31.md +219 -0
  64. package/docs/RELEASE_BENCHMARK_REPORT_2026-05-15.md +135 -0
  65. package/docs/RELEASE_GATE.md +25 -0
  66. package/docs/RELEASE_NOTES_v0.1.0.md +54 -0
  67. package/docs/SECURITY_REVIEW_2026-06-05.md +165 -0
  68. package/docs/TELEMETRY.md +41 -0
  69. package/docs/THREAT_MODEL.md +89 -0
  70. package/docs/VERSIONING_POLICY.md +30 -0
  71. package/docs/assets/banner-github.png +0 -0
  72. package/docs/assets/banner.png +0 -0
  73. package/docs/assets/banner.svg +123 -0
  74. package/eslint.config.js +15 -0
  75. package/fuzz/ts/harness-decode.ts +136 -0
  76. package/fuzz/ts/harness-verify.ts +121 -0
  77. package/fuzz/ts/run.ts +35 -0
  78. package/mcp-server/README.md +38 -0
  79. package/mcp-server/package-lock.json +1187 -0
  80. package/mcp-server/package.json +35 -0
  81. package/mcp-server/src/index.ts +236 -0
  82. package/mcp-server/tsconfig.json +14 -0
  83. package/package.json +121 -13
  84. package/scripts/aip-framework-quickstart.ts +110 -0
  85. package/scripts/aip-mcp-gateway.ts +38 -0
  86. package/scripts/aip-mcp-wrap-demo.ts +72 -0
  87. package/scripts/aip-quickstart.ts +60 -0
  88. package/scripts/bench-diff.ts +118 -0
  89. package/scripts/bench-protocol-e2e.ts +937 -0
  90. package/scripts/bench-protocol-openloop.ts +1397 -0
  91. package/scripts/bench-replay-cache.ts +76 -0
  92. package/scripts/bench-signature-profiles.ts +180 -0
  93. package/scripts/bench-wire-codecs.ts +161 -0
  94. package/scripts/build-binary-conformance.ts +36 -0
  95. package/scripts/build-release-dashboard.ts +175 -0
  96. package/scripts/canary-rollout.ts +38 -0
  97. package/scripts/mcpGatewayCli.test.ts +116 -0
  98. package/scripts/prepare-aip-package.ts +88 -0
  99. package/scripts/regen-conformance-sigs.ts +18 -0
  100. package/scripts/release-gate.ts +19 -0
  101. package/scripts/validate-runtime-policy.ts +18 -0
  102. package/sdk/browser/index.test.ts +162 -0
  103. package/sdk/browser/index.ts +257 -0
  104. package/sdk/browser/package.json +13 -0
  105. package/sdk/go/cbor.go +551 -0
  106. package/sdk/go/cbor_test.go +232 -0
  107. package/sdk/go/encryption.go +280 -0
  108. package/sdk/go/encryption_test.go +318 -0
  109. package/sdk/go/go.mod +7 -0
  110. package/sdk/go/go.sum +4 -0
  111. package/sdk/go/http.go +135 -0
  112. package/sdk/go/protocol.go +324 -0
  113. package/sdk/go/protocol_test.go +334 -0
  114. package/sdk/go/replay.go +121 -0
  115. package/sdk/go/replay_test.go +149 -0
  116. package/sdk/go/webhook.go +136 -0
  117. package/sdk/pq/package-lock.json +1358 -0
  118. package/sdk/pq/package.json +42 -0
  119. package/sdk/pq/src/index.test.ts +143 -0
  120. package/sdk/pq/src/index.ts +166 -0
  121. package/sdk/pq/tsconfig.json +14 -0
  122. package/sdk/pq/vitest.config.ts +7 -0
  123. package/sdk/python/README.md +18 -0
  124. package/sdk/python/protocol_7h3/__init__.py +46 -0
  125. package/sdk/python/protocol_7h3/encryption.py +252 -0
  126. package/sdk/python/protocol_7h3/http.py +212 -0
  127. package/sdk/python/protocol_7h3/keys.py +149 -0
  128. package/sdk/python/protocol_7h3/pq.py +244 -0
  129. package/sdk/python/protocol_7h3/protocol.py +525 -0
  130. package/sdk/python/protocol_7h3/queue.py +118 -0
  131. package/sdk/python/protocol_7h3/replay.py +98 -0
  132. package/sdk/python/protocol_7h3/webhook.py +116 -0
  133. package/sdk/python/pyproject.toml +40 -0
  134. package/sdk/python/tests/test_conformance.py +110 -0
  135. package/sdk/python/tests/test_encryption.py +206 -0
  136. package/sdk/python/tests/test_http.py +305 -0
  137. package/sdk/python/tests/test_keys.py +417 -0
  138. package/sdk/python/tests/test_queue.py +120 -0
  139. package/sdk/python/tests/test_webhook.py +345 -0
  140. package/sdk/rust/Cargo.lock +371 -0
  141. package/sdk/rust/Cargo.toml +25 -0
  142. package/sdk/rust/README.md +31 -0
  143. package/sdk/rust/fuzz/Cargo.toml +29 -0
  144. package/sdk/rust/fuzz/fuzz_targets/fuzz_canonicalize.rs +46 -0
  145. package/sdk/rust/fuzz/fuzz_targets/fuzz_decode.rs +11 -0
  146. package/sdk/rust/src/bin/aip_mcp_gateway.rs +59 -0
  147. package/sdk/rust/src/http.rs +145 -0
  148. package/sdk/rust/src/keys.rs +161 -0
  149. package/sdk/rust/src/lib.rs +688 -0
  150. package/sdk/rust/src/queue.rs +79 -0
  151. package/sdk/rust/src/webhook.rs +86 -0
  152. package/sdk/rust/tests/conformance.rs +148 -0
  153. package/sdk/rust/tests/gateway.rs +130 -0
  154. package/sdk/rust/tests/http_webhook_queue.rs +201 -0
  155. package/sdk/rust/tests/keys.rs +189 -0
  156. package/sdk/threshold/index.d.ts +68 -0
  157. package/sdk/threshold/index.d.ts.map +1 -0
  158. package/sdk/threshold/index.js +254 -0
  159. package/sdk/threshold/package-lock.json +1361 -0
  160. package/sdk/threshold/package.json +39 -0
  161. package/sdk/threshold/src/index.d.ts +68 -0
  162. package/sdk/threshold/src/index.d.ts.map +1 -0
  163. package/sdk/threshold/src/index.js +254 -0
  164. package/sdk/threshold/src/index.test.ts +238 -0
  165. package/sdk/threshold/src/index.ts +355 -0
  166. package/sdk/threshold/tsconfig.json +19 -0
  167. package/sdk/threshold/vitest.config.ts +12 -0
  168. package/src/agentAdapter.test.ts +48 -0
  169. package/src/agentAdapter.ts +56 -0
  170. package/src/auditLog.test.ts +145 -0
  171. package/src/auditLog.ts +147 -0
  172. package/src/capability.test.ts +504 -0
  173. package/src/capability.ts +380 -0
  174. package/src/cborCodec.test.ts +263 -0
  175. package/src/cborCodec.ts +339 -0
  176. package/src/conformance.test.ts +136 -0
  177. package/src/conformanceVectors.ts +99 -0
  178. package/src/encryption.test.ts +206 -0
  179. package/src/encryption.ts +245 -0
  180. package/src/envelopeCbor.ts +140 -0
  181. package/src/frameworkAdapters.test.ts +290 -0
  182. package/src/frameworkAdapters.ts +261 -0
  183. package/src/gateway.test.ts +343 -0
  184. package/src/gateway.ts +246 -0
  185. package/src/grpcBinding.test.ts +211 -0
  186. package/src/grpcBinding.ts +103 -0
  187. package/src/httpBinding.test.ts +376 -0
  188. package/src/httpBinding.ts +189 -0
  189. package/src/index.ts +39 -0
  190. package/src/keyInfra.test.ts +278 -0
  191. package/src/keyInfra.ts +228 -0
  192. package/src/keyRegistry.ts +59 -0
  193. package/src/keyRotation.test.ts +78 -0
  194. package/src/keyRotation.ts +72 -0
  195. package/src/mcpGateway.test.ts +129 -0
  196. package/src/mcpGateway.ts +250 -0
  197. package/src/mcpTransports.test.ts +92 -0
  198. package/src/mcpTransports.ts +169 -0
  199. package/src/mcpWrapper.test.ts +179 -0
  200. package/src/mcpWrapper.ts +206 -0
  201. package/src/otel.ts +136 -0
  202. package/src/policyEnforcer.test.ts +99 -0
  203. package/src/policyEnforcer.ts +169 -0
  204. package/src/policyTelemetryFeedback.test.ts +25 -0
  205. package/src/policyTelemetryFeedback.ts +38 -0
  206. package/src/protocol.bench.ts +37 -0
  207. package/{protocol.d.ts → src/protocol.d.ts} +2 -1
  208. package/src/protocol.d.ts.map +1 -0
  209. package/src/protocol.js +294 -0
  210. package/src/protocol.test.ts +155 -0
  211. package/src/protocol.ts +414 -0
  212. package/src/protocolAgent.test.ts +105 -0
  213. package/src/protocolAgent.ts +169 -0
  214. package/src/protocolBinary.test.ts +165 -0
  215. package/src/protocolBinary.ts +312 -0
  216. package/src/protocolCapabilities.ts +70 -0
  217. package/src/protocolFuzz.advanced.test.ts +235 -0
  218. package/src/protocolFuzz.test.ts +111 -0
  219. package/src/protocolNegative.test.ts +97 -0
  220. package/src/protocolReplay.test.ts +71 -0
  221. package/src/protocolReplay.ts +194 -0
  222. package/src/protocolTransport.test.ts +556 -0
  223. package/src/protocolTransport.ts +483 -0
  224. package/src/queueBinding.test.ts +130 -0
  225. package/src/queueBinding.ts +102 -0
  226. package/src/rateLimiter.test.ts +96 -0
  227. package/src/rateLimiter.ts +46 -0
  228. package/src/redisClient.ts +140 -0
  229. package/src/redisIntegration.test.ts +134 -0
  230. package/src/replayStores.test.ts +273 -0
  231. package/src/replayStores.ts +215 -0
  232. package/src/revocation.test.ts +98 -0
  233. package/src/revocation.ts +0 -0
  234. package/src/routePolicy.test.ts +87 -0
  235. package/src/routePolicy.ts +72 -0
  236. package/src/runtimePolicy.test.ts +49 -0
  237. package/src/runtimePolicy.ts +81 -0
  238. package/src/runtimePolicyManager.test.ts +29 -0
  239. package/src/runtimePolicyManager.ts +50 -0
  240. package/src/runtimePolicyPresets.ts +43 -0
  241. package/src/signedResponse.test.ts +111 -0
  242. package/src/signedResponse.ts +83 -0
  243. package/src/stream.test.ts +254 -0
  244. package/src/stream.ts +417 -0
  245. package/src/telemetry.test.ts +251 -0
  246. package/src/telemetry.ts +299 -0
  247. package/src/webhookBinding.test.ts +144 -0
  248. package/src/webhookBinding.ts +115 -0
  249. package/src/wsBinding.test.ts +221 -0
  250. package/src/wsBinding.ts +200 -0
  251. package/tsconfig.json +15 -0
  252. package/tsconfig.lib.json +23 -0
  253. package/vite.lib.config.ts +16 -0
  254. package/vitest.config.ts +11 -0
  255. package/agentAdapter.d.ts +0 -26
  256. package/conformanceVectors.d.ts +0 -20
  257. package/frameworkAdapters.d.ts +0 -72
  258. package/index.d.ts +0 -20
  259. package/index.js +0 -1702
  260. package/keyRotation.d.ts +0 -20
  261. package/mcpGateway.d.ts +0 -37
  262. package/mcpTransports.d.ts +0 -62
  263. package/mcpWrapper.d.ts +0 -83
  264. package/policyEnforcer.d.ts +0 -50
  265. package/policyTelemetryFeedback.d.ts +0 -11
  266. package/protocolAgent.d.ts +0 -58
  267. package/protocolBinary.d.ts +0 -8
  268. package/protocolCapabilities.d.ts +0 -24
  269. package/protocolReplay.d.ts +0 -35
  270. package/protocolTransport.d.ts +0 -73
  271. package/redisClient.d.ts +0 -49
  272. package/replayStores.d.ts +0 -32
  273. package/revocation.d.ts +0 -71
  274. package/runtimePolicy.d.ts +0 -24
  275. package/runtimePolicyManager.d.ts +0 -15
  276. package/runtimePolicyPresets.d.ts +0 -11
@@ -0,0 +1,339 @@
1
+ /**
2
+ * Minimal deterministic CBOR encoder/decoder — zero external dependencies.
3
+ * Follows RFC 8949 §4.2 deterministic encoding:
4
+ * - Shortest-length integers
5
+ * - Map keys sorted by lexicographic byte order of encoded key
6
+ */
7
+
8
+ const textEncoder = new TextEncoder()
9
+ const textDecoder = new TextDecoder()
10
+
11
+ // CBOR major types
12
+ const MT_UINT = 0 // major type 0: unsigned int
13
+ const MT_NINT = 1 // major type 1: negative int
14
+ const MT_BSTR = 2 // major type 2: byte string
15
+ const MT_TSTR = 3 // major type 3: text string
16
+ const MT_ARRAY = 4 // major type 4: array
17
+ const MT_MAP = 5 // major type 5: map
18
+ const MT_SIMPLE = 7 // major type 7: simple/float
19
+
20
+ const SIMPLE_FALSE = 0xf4
21
+ const SIMPLE_TRUE = 0xf5
22
+ const SIMPLE_NULL = 0xf6
23
+
24
+ // Additional info thresholds
25
+ const AI_1BYTE = 24
26
+ const AI_2BYTE = 25
27
+ const AI_4BYTE = 26
28
+ const AI_8BYTE = 27
29
+
30
+ // float64 additional info
31
+ const AI_FLOAT64 = 27
32
+
33
+ export class CborEncoder {
34
+ private chunks: Uint8Array[] = []
35
+
36
+ encode(value: unknown): Uint8Array {
37
+ this.chunks = []
38
+ this._encode(value)
39
+ return this._concat()
40
+ }
41
+
42
+ private _encode(value: unknown): void {
43
+ if (value === null || value === undefined) {
44
+ this.chunks.push(new Uint8Array([SIMPLE_NULL]))
45
+ return
46
+ }
47
+ if (typeof value === 'boolean') {
48
+ this.chunks.push(new Uint8Array([value ? SIMPLE_TRUE : SIMPLE_FALSE]))
49
+ return
50
+ }
51
+ if (typeof value === 'number') {
52
+ this._encodeNumber(value)
53
+ return
54
+ }
55
+ if (typeof value === 'string') {
56
+ this._encodeString(value)
57
+ return
58
+ }
59
+ if (value instanceof Uint8Array) {
60
+ this._encodeByteString(value)
61
+ return
62
+ }
63
+ if (Array.isArray(value)) {
64
+ this._encodeArray(value)
65
+ return
66
+ }
67
+ if (value instanceof Map) {
68
+ // Keys can be numbers or strings
69
+ const entries = [...value.entries()] as Array<[unknown, unknown]>
70
+ this._encodeMapFromAnyEntries(entries)
71
+ return
72
+ }
73
+ if (typeof value === 'object') {
74
+ // Plain object: treat keys as strings
75
+ const entries = Object.entries(value as Record<string, unknown>)
76
+ this._encodeMapFromEntries(entries)
77
+ return
78
+ }
79
+ throw new Error(`CborEncoder: unsupported type: ${typeof value}`)
80
+ }
81
+
82
+ private _encodeNumber(value: number): void {
83
+ if (!Number.isFinite(value) || !Number.isInteger(value)) {
84
+ // float64
85
+ this.chunks.push(this._float64Header())
86
+ const buf = new ArrayBuffer(8)
87
+ new DataView(buf).setFloat64(0, value, false)
88
+ this.chunks.push(new Uint8Array(buf))
89
+ return
90
+ }
91
+ if (value >= 0) {
92
+ this._encodeHead(MT_UINT, value)
93
+ } else {
94
+ // negative: -1 - n encoded as n
95
+ this._encodeHead(MT_NINT, -1 - value)
96
+ }
97
+ }
98
+
99
+ private _float64Header(): Uint8Array {
100
+ return new Uint8Array([(MT_SIMPLE << 5) | AI_FLOAT64])
101
+ }
102
+
103
+ private _encodeString(value: string): void {
104
+ const bytes = textEncoder.encode(value)
105
+ this._encodeHead(MT_TSTR, bytes.length)
106
+ this.chunks.push(bytes)
107
+ }
108
+
109
+ private _encodeByteString(value: Uint8Array): void {
110
+ this._encodeHead(MT_BSTR, value.length)
111
+ this.chunks.push(value)
112
+ }
113
+
114
+ private _encodeArray(value: unknown[]): void {
115
+ this._encodeHead(MT_ARRAY, value.length)
116
+ for (const item of value) {
117
+ this._encode(item)
118
+ }
119
+ }
120
+
121
+ private _encodeMapFromAnyEntries(entries: Array<[unknown, unknown]>): void {
122
+ // Encode each key to bytes, then sort by lexicographic byte order of encoded key
123
+ const encoded: Array<{ keyEncoded: Uint8Array; key: unknown; value: unknown }> = entries.map(([k, v]) => {
124
+ let keyEncoded: Uint8Array
125
+ if (typeof k === 'number' && Number.isInteger(k)) {
126
+ keyEncoded = this._encodeHeadBytes(MT_UINT, k)
127
+ } else {
128
+ const keyBytes = textEncoder.encode(String(k))
129
+ const keyLenEncoded = this._encodeHeadBytes(MT_TSTR, keyBytes.length)
130
+ keyEncoded = this._concatPair(keyLenEncoded, keyBytes)
131
+ }
132
+ return { keyEncoded, key: k, value: v }
133
+ })
134
+
135
+ encoded.sort((a, b) => this._compareBytes(a.keyEncoded, b.keyEncoded))
136
+
137
+ this._encodeHead(MT_MAP, encoded.length)
138
+ for (const { key, value } of encoded) {
139
+ // Write key
140
+ if (typeof key === 'number' && Number.isInteger(key)) {
141
+ this._encodeHead(MT_UINT, key as number)
142
+ } else {
143
+ const keyBytes = textEncoder.encode(String(key))
144
+ this._encodeHead(MT_TSTR, keyBytes.length)
145
+ this.chunks.push(keyBytes)
146
+ }
147
+ // Write value
148
+ this._encode(value)
149
+ }
150
+ }
151
+
152
+ private _encodeMapFromEntries(entries: Array<[string, unknown]>): void {
153
+ // Deterministic: sort keys by UTF-8 byte order of encoded key
154
+ const encoded: Array<{ keyBytes: Uint8Array; keyEncoded: Uint8Array; value: unknown }> = entries.map(([k, v]) => {
155
+ const keyBytes = textEncoder.encode(k)
156
+ const keyLenEncoded = this._encodeHeadBytes(MT_TSTR, keyBytes.length)
157
+ const keyEncoded = this._concatPair(keyLenEncoded, keyBytes)
158
+ return { keyBytes, keyEncoded, value: v }
159
+ })
160
+
161
+ encoded.sort((a, b) => this._compareBytes(a.keyEncoded, b.keyEncoded))
162
+
163
+ this._encodeHead(MT_MAP, encoded.length)
164
+ for (const { keyBytes, value } of encoded) {
165
+ // Write key
166
+ this._encodeHead(MT_TSTR, keyBytes.length)
167
+ this.chunks.push(keyBytes)
168
+ // Write value
169
+ this._encode(value)
170
+ }
171
+ }
172
+
173
+ private _compareBytes(a: Uint8Array, b: Uint8Array): number {
174
+ const len = Math.min(a.length, b.length)
175
+ for (let i = 0; i < len; i++) {
176
+ const diff = (a[i] ?? 0) - (b[i] ?? 0)
177
+ if (diff !== 0) return diff
178
+ }
179
+ return a.length - b.length
180
+ }
181
+
182
+ private _concatPair(a: Uint8Array, b: Uint8Array): Uint8Array {
183
+ const result = new Uint8Array(a.length + b.length)
184
+ result.set(a, 0)
185
+ result.set(b, a.length)
186
+ return result
187
+ }
188
+
189
+ private _encodeHead(majorType: number, value: number): void {
190
+ this.chunks.push(this._encodeHeadBytes(majorType, value))
191
+ }
192
+
193
+ private _encodeHeadBytes(majorType: number, value: number): Uint8Array {
194
+ const mt = majorType << 5
195
+ if (value <= 23) {
196
+ return new Uint8Array([mt | value])
197
+ }
198
+ if (value <= 0xff) {
199
+ return new Uint8Array([mt | AI_1BYTE, value])
200
+ }
201
+ if (value <= 0xffff) {
202
+ const buf = new ArrayBuffer(3)
203
+ const dv = new DataView(buf)
204
+ dv.setUint8(0, mt | AI_2BYTE)
205
+ dv.setUint16(1, value, false)
206
+ return new Uint8Array(buf)
207
+ }
208
+ if (value <= 0xffffffff) {
209
+ const buf = new ArrayBuffer(5)
210
+ const dv = new DataView(buf)
211
+ dv.setUint8(0, mt | AI_4BYTE)
212
+ dv.setUint32(1, value, false)
213
+ return new Uint8Array(buf)
214
+ }
215
+ // 8-byte (for large numbers)
216
+ const buf = new ArrayBuffer(9)
217
+ const dv = new DataView(buf)
218
+ dv.setUint8(0, mt | AI_8BYTE)
219
+ dv.setBigUint64(1, BigInt(value), false)
220
+ return new Uint8Array(buf)
221
+ }
222
+
223
+ private _concat(): Uint8Array {
224
+ const total = this.chunks.reduce((sum, c) => sum + c.length, 0)
225
+ const result = new Uint8Array(total)
226
+ let offset = 0
227
+ for (const chunk of this.chunks) {
228
+ result.set(chunk, offset)
229
+ offset += chunk.length
230
+ }
231
+ return result
232
+ }
233
+ }
234
+
235
+ export class CborDecoder {
236
+ private data!: Uint8Array
237
+ private offset = 0
238
+
239
+ decode(data: Uint8Array): unknown {
240
+ this.data = data
241
+ this.offset = 0
242
+ const result = this._decode()
243
+ return result
244
+ }
245
+
246
+ private _decode(): unknown {
247
+ const initialByte = this._readByte()
248
+ const majorType = (initialByte >> 5) & 0x7
249
+ const additionalInfo = initialByte & 0x1f
250
+
251
+ switch (majorType) {
252
+ case MT_UINT:
253
+ return this._decodeUint(additionalInfo)
254
+ case MT_NINT:
255
+ return -1 - this._decodeUint(additionalInfo)
256
+ case MT_BSTR: {
257
+ const len = this._decodeUint(additionalInfo)
258
+ return this._readBytes(len)
259
+ }
260
+ case MT_TSTR: {
261
+ const len = this._decodeUint(additionalInfo)
262
+ const bytes = this._readBytes(len)
263
+ return textDecoder.decode(bytes)
264
+ }
265
+ case MT_ARRAY: {
266
+ const count = this._decodeUint(additionalInfo)
267
+ const result: unknown[] = []
268
+ for (let i = 0; i < count; i++) {
269
+ result.push(this._decode())
270
+ }
271
+ return result
272
+ }
273
+ case MT_MAP: {
274
+ const count = this._decodeUint(additionalInfo)
275
+ const result: Record<string, unknown> = {}
276
+ for (let i = 0; i < count; i++) {
277
+ const key = this._decode()
278
+ const value = this._decode()
279
+ result[String(key)] = value
280
+ }
281
+ return result
282
+ }
283
+ case MT_SIMPLE: {
284
+ if (additionalInfo === 20) return false // 0xf4
285
+ if (additionalInfo === 21) return true // 0xf5
286
+ if (additionalInfo === 22) return null // 0xf6
287
+ if (additionalInfo === AI_FLOAT64) {
288
+ const bytes = this._readBytes(8)
289
+ return new DataView(bytes.buffer, bytes.byteOffset, 8).getFloat64(0, false)
290
+ }
291
+ throw new Error(`CborDecoder: unsupported simple value ${additionalInfo}`)
292
+ }
293
+ default:
294
+ throw new Error(`CborDecoder: unsupported major type ${majorType}`)
295
+ }
296
+ }
297
+
298
+ private _decodeUint(additionalInfo: number): number {
299
+ if (additionalInfo <= 23) return additionalInfo
300
+ if (additionalInfo === AI_1BYTE) return this._readByte()
301
+ if (additionalInfo === AI_2BYTE) {
302
+ const bytes = this._readBytes(2)
303
+ return new DataView(bytes.buffer, bytes.byteOffset, 2).getUint16(0, false)
304
+ }
305
+ if (additionalInfo === AI_4BYTE) {
306
+ const bytes = this._readBytes(4)
307
+ return new DataView(bytes.buffer, bytes.byteOffset, 4).getUint32(0, false)
308
+ }
309
+ if (additionalInfo === AI_8BYTE) {
310
+ const bytes = this._readBytes(8)
311
+ return Number(new DataView(bytes.buffer, bytes.byteOffset, 8).getBigUint64(0, false))
312
+ }
313
+ throw new Error(`CborDecoder: unsupported additional info ${additionalInfo}`)
314
+ }
315
+
316
+ private _readByte(): number {
317
+ if (this.offset >= this.data.length) {
318
+ throw new Error('CborDecoder: unexpected end of data')
319
+ }
320
+ return this.data[this.offset++] ?? 0
321
+ }
322
+
323
+ private _readBytes(count: number): Uint8Array {
324
+ if (this.offset + count > this.data.length) {
325
+ throw new Error('CborDecoder: unexpected end of data')
326
+ }
327
+ const result = this.data.slice(this.offset, this.offset + count)
328
+ this.offset += count
329
+ return result
330
+ }
331
+ }
332
+
333
+ export function encodeCbor(value: unknown): Uint8Array {
334
+ return new CborEncoder().encode(value)
335
+ }
336
+
337
+ export function decodeCbor(data: Uint8Array): unknown {
338
+ return new CborDecoder().decode(data)
339
+ }
@@ -0,0 +1,136 @@
1
+ import { describe, expect, it } from 'vitest'
2
+ import {
3
+ canonicalizeEnvelope,
4
+ signCanonicalPayloadEd25519,
5
+ signCanonicalPayloadHmac,
6
+ signEnvelopeEd25519,
7
+ signEnvelopeHmac,
8
+ verifyCanonicalPayloadEd25519,
9
+ verifyCanonicalPayloadHmac,
10
+ verifyEnvelopeEd25519,
11
+ verifyEnvelopeHmac,
12
+ } from './protocol'
13
+ import { InMemoryReplayCache } from './protocolReplay'
14
+ import { decodeEnvelope, encodeEnvelope, receiveEnvelope } from './protocolTransport'
15
+ import { decodeEnvelopeBinary, encodeEnvelopeBinary } from './protocolBinary'
16
+ import { AIP_V01_CONFORMANCE_VECTORS, AIP_V01_ED25519_CONFORMANCE_VECTORS } from './conformanceVectors'
17
+
18
+ describe('AIP v0.1 conformance vectors', () => {
19
+ for (const vector of AIP_V01_CONFORMANCE_VECTORS) {
20
+ it(`${vector.id}: canonicalization and signatures match fixture`, async () => {
21
+ const canonical = canonicalizeEnvelope(vector.envelope)
22
+ expect(canonical).toBe(vector.canonical)
23
+
24
+ const signature = await signCanonicalPayloadHmac(canonical, vector.secret)
25
+ expect(signature).toBe(vector.signature)
26
+
27
+ const signed = await signEnvelopeHmac(vector.envelope, vector.secret, vector.keyId)
28
+ expect(signed.signature).toEqual({
29
+ alg: 'HS256',
30
+ keyId: vector.keyId,
31
+ value: vector.signature,
32
+ })
33
+
34
+ expect(await verifyCanonicalPayloadHmac(canonical, vector.signature, vector.secret)).toBe(true)
35
+ expect(await verifyEnvelopeHmac(signed, vector.secret)).toBe(true)
36
+ expect(await verifyEnvelopeHmac(signed, `${vector.secret}-wrong`)).toBe(false)
37
+ })
38
+
39
+ it(`${vector.id}: transport roundtrip and replay/ttl checks`, async () => {
40
+ const signed = await signEnvelopeHmac(vector.envelope, vector.secret, vector.keyId)
41
+ const encodedCompact = encodeEnvelope(signed, 'compact')
42
+ const decoded = decodeEnvelope(encodedCompact)
43
+ expect(decoded.ok).toBe(true)
44
+ expect(decoded.envelope).toEqual(signed)
45
+
46
+ const binary = encodeEnvelopeBinary(signed)
47
+ const decodedBinary = decodeEnvelopeBinary(binary)
48
+ expect(decodedBinary.ok).toBe(true)
49
+ expect(decodedBinary.envelope).toEqual(signed)
50
+
51
+ const replayCache = new InMemoryReplayCache()
52
+ const first = await receiveEnvelope(encodedCompact, {
53
+ nowMs: vector.envelope.header.timestampMs + 1,
54
+ replayCache,
55
+ secretResolver: async () => vector.secret,
56
+ })
57
+ expect(first.ok).toBe(true)
58
+
59
+ const replay = await receiveEnvelope(encodedCompact, {
60
+ nowMs: vector.envelope.header.timestampMs + 2,
61
+ replayCache,
62
+ secretResolver: async () => vector.secret,
63
+ })
64
+ expect(replay.ok).toBe(false)
65
+ expect(replay.diagnostics.some((d) => d.message.includes('Replay detected'))).toBe(true)
66
+
67
+ const expired = await receiveEnvelope(encodedCompact, {
68
+ nowMs: vector.envelope.header.timestampMs + vector.envelope.header.ttlMs + 1,
69
+ replayCache: new InMemoryReplayCache(),
70
+ secretResolver: async () => vector.secret,
71
+ })
72
+ expect(expired.ok).toBe(false)
73
+ expect(expired.diagnostics.some((d) => d.message === 'Message TTL expired')).toBe(true)
74
+ })
75
+ }
76
+
77
+ for (const vector of AIP_V01_ED25519_CONFORMANCE_VECTORS) {
78
+ it(`${vector.id}: canonicalization and Ed25519 signatures match fixture`, async () => {
79
+ const canonical = canonicalizeEnvelope(vector.envelope)
80
+ expect(canonical).toBe(vector.canonical)
81
+
82
+ const signature = await signCanonicalPayloadEd25519(canonical, vector.privateKey)
83
+ expect(signature).toBe(vector.signature)
84
+
85
+ const signed = await signEnvelopeEd25519(vector.envelope, vector.privateKey, vector.keyId)
86
+ expect(signed.signature).toEqual({
87
+ alg: 'ED25519',
88
+ keyId: vector.keyId,
89
+ value: vector.signature,
90
+ })
91
+
92
+ expect(await verifyCanonicalPayloadEd25519(canonical, vector.signature, vector.publicKey)).toBe(true)
93
+ expect(await verifyEnvelopeEd25519(signed, vector.publicKey)).toBe(true)
94
+
95
+ const tampered = {
96
+ ...signed,
97
+ body: {
98
+ ...signed.body,
99
+ content: `${signed.body.content}:tampered`,
100
+ },
101
+ }
102
+ expect(await verifyEnvelopeEd25519(tampered, vector.publicKey)).toBe(false)
103
+ })
104
+
105
+ it(`${vector.id}: transport verify via signatureResolver`, async () => {
106
+ const signed = await signEnvelopeEd25519(vector.envelope, vector.privateKey, vector.keyId)
107
+ const encodedCompact = encodeEnvelope(signed, 'compact')
108
+ const decoded = decodeEnvelope(encodedCompact)
109
+ expect(decoded.ok).toBe(true)
110
+ expect(decoded.envelope).toEqual(signed)
111
+
112
+ const binary = encodeEnvelopeBinary(signed)
113
+ const decodedBinary = decodeEnvelopeBinary(binary)
114
+ expect(decodedBinary.ok).toBe(true)
115
+ expect(decodedBinary.envelope).toEqual(signed)
116
+
117
+ const first = await receiveEnvelope(encodedCompact, {
118
+ nowMs: vector.envelope.header.timestampMs + 1,
119
+ replayCache: new InMemoryReplayCache(),
120
+ signatureResolver: async (signature, sender) =>
121
+ signature.alg === 'ED25519' && signature.keyId === vector.keyId && sender === vector.envelope.header.sender
122
+ ? { alg: 'ED25519', publicKey: vector.publicKey }
123
+ : undefined,
124
+ })
125
+ expect(first.ok).toBe(true)
126
+
127
+ const expired = await receiveEnvelope(encodedCompact, {
128
+ nowMs: vector.envelope.header.timestampMs + vector.envelope.header.ttlMs + 1,
129
+ replayCache: new InMemoryReplayCache(),
130
+ signatureResolver: async () => ({ alg: 'ED25519', publicKey: vector.publicKey }),
131
+ })
132
+ expect(expired.ok).toBe(false)
133
+ expect(expired.diagnostics.some((d) => d.message === 'Message TTL expired')).toBe(true)
134
+ })
135
+ }
136
+ })
@@ -0,0 +1,99 @@
1
+ import type { ProtocolEnvelope } from './protocol'
2
+
3
+ export interface ConformanceVector {
4
+ id: string
5
+ secret: string
6
+ keyId: string
7
+ envelope: Omit<ProtocolEnvelope, 'signature'>
8
+ canonical: string
9
+ signature: string
10
+ }
11
+
12
+ export interface Ed25519ConformanceVector {
13
+ id: string
14
+ keyId: string
15
+ publicKey: string
16
+ privateKey: string
17
+ envelope: Omit<ProtocolEnvelope, 'signature'>
18
+ canonical: string
19
+ signature: string
20
+ }
21
+
22
+ export const AIP_V01_CONFORMANCE_VECTORS: ConformanceVector[] = [
23
+ {
24
+ id: 'task-with-capability-and-recipient',
25
+ secret: 'vector-secret-1',
26
+ keyId: 'vector-key-1',
27
+ envelope: {
28
+ header: {
29
+ version: '7h3/0.1',
30
+ messageId: 'vec-1',
31
+ timestampMs: 1712500000000,
32
+ ttlMs: 60000,
33
+ sender: 'agent.alpha',
34
+ recipient: 'agent.beta',
35
+ nonce: 'nonce-vec-1',
36
+ },
37
+ body: {
38
+ intent: 'TASK',
39
+ content: 'route:alpha->beta',
40
+ capability: 'task.plan',
41
+ correlationId: 'corr-1',
42
+ },
43
+ },
44
+ canonical:
45
+ '{"body":{"capability":"task.plan","content":"route:alpha->beta","correlationId":"corr-1","intent":"TASK"},"header":{"messageId":"vec-1","nonce":"nonce-vec-1","recipient":"agent.beta","sender":"agent.alpha","timestampMs":1712500000000,"ttlMs":60000,"version":"7h3/0.1"}}',
46
+ signature: 'bZP1N1f4w4RGSKw6pfdcA6dQjvpv9nIHAQCttjNCZyI',
47
+ },
48
+ {
49
+ id: 'result-with-minimal-fields',
50
+ secret: 'vector-secret-2',
51
+ keyId: 'vector-key-2',
52
+ envelope: {
53
+ header: {
54
+ version: '7h3/0.1',
55
+ messageId: 'vec-2',
56
+ timestampMs: 1712500005000,
57
+ ttlMs: 30000,
58
+ sender: 'memory.agent',
59
+ nonce: 'nonce-vec-2',
60
+ },
61
+ body: {
62
+ intent: 'RESULT',
63
+ content: 'memory:ok',
64
+ },
65
+ },
66
+ canonical:
67
+ '{"body":{"content":"memory:ok","intent":"RESULT"},"header":{"messageId":"vec-2","nonce":"nonce-vec-2","sender":"memory.agent","timestampMs":1712500005000,"ttlMs":30000,"version":"7h3/0.1"}}',
68
+ signature: '_soWM4GZS8qWZDWyXEeXPaQp7Diyp2SQua9mKy2q0BQ',
69
+ },
70
+ ]
71
+
72
+ export const AIP_V01_ED25519_CONFORMANCE_VECTORS: Ed25519ConformanceVector[] = [
73
+ {
74
+ id: 'task-ed25519-with-recipient',
75
+ keyId: 'ed-vector-key-1',
76
+ publicKey: 'MCowBQYDK2VwAyEA-mUFiTQtcKN4nnD19V_-Wyy4q19OivnAutRUPhOcC78',
77
+ privateKey: 'MC4CAQAwBQYDK2VwBCIEICheZbQGuDVb6hezIlcs0QnCHGxz6IhiLkC9M0qr8OOZ',
78
+ envelope: {
79
+ header: {
80
+ version: '7h3/0.1',
81
+ messageId: 'vec-ed-1',
82
+ timestampMs: 1712500010000,
83
+ ttlMs: 45000,
84
+ sender: 'agent.ed',
85
+ recipient: 'agent.verify',
86
+ nonce: 'nonce-ed-1',
87
+ },
88
+ body: {
89
+ intent: 'TASK',
90
+ content: 'route:ed25519',
91
+ capability: 'task.sign',
92
+ correlationId: 'corr-ed-1',
93
+ },
94
+ },
95
+ canonical:
96
+ '{"body":{"capability":"task.sign","content":"route:ed25519","correlationId":"corr-ed-1","intent":"TASK"},"header":{"messageId":"vec-ed-1","nonce":"nonce-ed-1","recipient":"agent.verify","sender":"agent.ed","timestampMs":1712500010000,"ttlMs":45000,"version":"7h3/0.1"}}',
97
+ signature: 'AAWu-6pp7NQZ-NtWKrgREWlMBx-kMZZzZ5dIiBqOdT-zdr-u4HtS6upE79yX7UUNPYUfyKs7lfssi0EeOvIxAA',
98
+ },
99
+ ]