2 implementations of Transform
System.Security.Cryptography (2)
System\Security\Cryptography\BasicSymmetricCipherLiteBCrypt.cs (1)
45public int Transform(ReadOnlySpan<byte> input, Span<byte> output)
System\Security\Cryptography\BasicSymmetricCipherLiteNCrypt.cs (1)
55public int Transform(ReadOnlySpan<byte> input, Span<byte> output)
3 references to Transform
System.Security.Cryptography (3)
System\Security\Cryptography\AesImplementation.Windows.cs (2)
70static (cipher, source, destination) => cipher.Transform(source, destination)); 93static (cipher, source, destination) => cipher.Transform(source, destination));
System\Security\Cryptography\UniversalCryptoOneShot.cs (1)
134writtenToOutput = cipher.Transform(unpaddedBlocks, output);