From 9725dc84adc61e4f929c495a9cbecde2e174ca66 Mon Sep 17 00:00:00 2001 From: Ivan FB Date: Tue, 31 Mar 2026 21:21:40 +0200 Subject: [PATCH] simplify IEncryption to only accept raw encrypt and decrypt functions --- standards/application/reliable-channel-api.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/standards/application/reliable-channel-api.md b/standards/application/reliable-channel-api.md index f1aab18..e8eecbc 100644 --- a/standards/application/reliable-channel-api.md +++ b/standards/application/reliable-channel-api.md @@ -139,8 +139,6 @@ types: parameters: - name: plaintext type: array - - name: encryptionKey - type: array returns: type: result, error> decrypt: @@ -149,8 +147,6 @@ types: parameters: - name: ciphertext type: array - - name: encryptionKey - type: array returns: type: result, error> ```