From 963562e1d7cd0d7163197167aa1ae6dfe1c640bd Mon Sep 17 00:00:00 2001
From: Youenn Fablet
Date: Tue, 14 Apr 2026 09:28:58 +0200
Subject: [PATCH] Adding the 3 cipher suites defined in
https://www.ietf.org/archive/id/draft-barnes-sframe-iana-256-03.html
---
index.bs | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/index.bs b/index.bs
index fe4d40f..2246d12 100644
--- a/index.bs
+++ b/index.bs
@@ -240,13 +240,16 @@ The APIs presented in this section allow applications to process SFrame data usi
-// List of supported cipher suites, as defined in [[RFC9605]] section 4.5.
+// List of supported cipher suites, as defined in [[RFC9605]] section 4.5 and in https://datatracker.ietf.org/doc/draft-barnes-sframe-iana-256/.
enum SFrameCipherSuite {
"AES_128_CTR_HMAC_SHA256_80",
"AES_128_CTR_HMAC_SHA256_64",
"AES_128_CTR_HMAC_SHA256_32",
"AES_128_GCM_SHA256_128",
- "AES_256_GCM_SHA512_128"
+ "AES_256_GCM_SHA512_128",
+ "AES_256_CTR_HMAC_SHA512_80",
+ "AES_256_CTR_HMAC_SHA512_64",
+ "AES_256_CTR_HMAC_SHA512_32"
};
dictionary SFrameTransformOptions {