From 7351b9087b4a11a5428edc46f96ddd22319902a3 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Tue, 23 Apr 2024 14:31:44 +0700 Subject: Add TODOs --- crypto/src/crypto/IBufferedCipher.cs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'crypto') diff --git a/crypto/src/crypto/IBufferedCipher.cs b/crypto/src/crypto/IBufferedCipher.cs index 4471c42c9..4660fa7b7 100644 --- a/crypto/src/crypto/IBufferedCipher.cs +++ b/crypto/src/crypto/IBufferedCipher.cs @@ -33,6 +33,8 @@ namespace Org.BouncyCastle.Crypto int ProcessBytes(byte[] input, int inOff, int length, byte[] output, int outOff); #if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER + // TODO[api] + //byte[] ProcessBytes(ReadOnlySpan input); int ProcessBytes(ReadOnlySpan input, Span output); #endif @@ -44,6 +46,8 @@ namespace Org.BouncyCastle.Crypto int DoFinal(byte[] input, int inOff, int length, byte[] output, int outOff); #if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER + // TODO[api] + //byte[] DoFinal(ReadOnlySpan input); int DoFinal(Span output); int DoFinal(ReadOnlySpan input, Span output); #endif -- cgit 1.4.1