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