Implemented interface member:
method
Transform
System.Security.Cryptography.ILiteSymmetricCipher.Transform(System.ReadOnlySpan<System.Byte>, System.Span<System.Byte>)
2 references to Transform
System.Security.Cryptography (2)
System\Security\Cryptography\BasicSymmetricCipherLiteNCrypt.cs (1)
150numBytesWritten = Transform(input, output);
System\Security\Cryptography\BasicSymmetricCipherNCrypt.cs (1)
24public sealed override int Transform(ReadOnlySpan<byte> input, Span<byte> output) => _cipher.Transform(input, output);