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