4 implementations of CanTransformMultipleBlocks
System.Security.Cryptography (4)
System\Security\Cryptography\Base64Transforms.cs (2)
26public bool CanTransformMultipleBlocks => true; 139public bool CanTransformMultipleBlocks => true;
System\Security\Cryptography\HashAlgorithm.cs (1)
192public virtual bool CanTransformMultipleBlocks => true;
System\Security\Cryptography\UniversalCryptoTransform.cs (1)
43public bool CanTransformMultipleBlocks
7 references to CanTransformMultipleBlocks
System.Security.Cryptography (4)
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (2)
411Debug.Assert(encryptor.CanTransformMultipleBlocks); 945Debug.Assert(decryptor.CanTransformMultipleBlocks);
System\Security\Cryptography\CryptoStream.cs (2)
341if (blocksToProcess > 1 && _transform.CanTransformMultipleBlocks) 588if (_transform.CanTransformMultipleBlocks && numWholeBlocks > 1)
System.Security.Cryptography.Pkcs (3)
Internal\Cryptography\PkcsHelpers.cs (1)
450if (transform.CanTransformMultipleBlocks)
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (2)
411Debug.Assert(encryptor.CanTransformMultipleBlocks); 945Debug.Assert(decryptor.CanTransformMultipleBlocks);