Implemented interface member:
property
InputBlockSize
System.Security.Cryptography.ICryptoTransform.InputBlockSize
5 references to InputBlockSize
System.Security.Cryptography (5)
System\Security\Cryptography\UniversalCryptoDecryptor.cs (4)
50
_heldoverCipher = new byte[
InputBlockSize
];
57
Debug.Assert(inputBuffer.Length %
InputBlockSize
== 0, "Did not remove whole blocks for depadding");
116
unpaddedLength = SymmetricPadding.GetPaddingLength(decryptedBytes, PaddingMode,
InputBlockSize
);
137
byte[] rented = CryptoPool.Rent(inputCount +
InputBlockSize
);
System\Security\Cryptography\UniversalCryptoTransform.cs (1)
75
if (inputCount %
InputBlockSize
!= 0)