Implemented interface member:
property
InputBlockSize
System.Security.Cryptography.ICryptoTransform.InputBlockSize
15 references to InputBlockSize
System.Core (15)
System\Security\Cryptography\CapiSymmetricAlgorithm.cs (15)
110
Contract.Requires(inputCount > 0 && inputCount %
InputBlockSize
== 0);
138
m_depadBuffer = new byte[
InputBlockSize
];
149
Debug.Assert(inputCount %
InputBlockSize
== 0, "Did not remove whole blocks for depadding");
180
if (padBytes <= 0 || padBytes >
InputBlockSize
) {
197
if (padBytes <= 0 || padBytes >
InputBlockSize
) {
208
if (padBytes <= 0 || padBytes >
InputBlockSize
) {
246
Contract.Requires(count > 0 && count %
InputBlockSize
== 0);
282
Contract.Ensures(Contract.Result<byte[]>() != null && Contract.Result<byte[]>().Length %
InputBlockSize
== 0);
285
int padBytes =
InputBlockSize
- (count %
InputBlockSize
);
312
if (count %
InputBlockSize
!= 0) {
338
if (padBytes ==
InputBlockSize
) {
396
Contract.Requires(count > 0 && count %
InputBlockSize
== 0);
486
if (inputCount %
InputBlockSize
!= 0) {
541
if (inputCount %
InputBlockSize
!= 0) {