7 overrides of FeedbackSize
System.Security.Cryptography (7)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
23
public override int
FeedbackSize
System\Security\Cryptography\AesManaged.cs (1)
22
public override int
FeedbackSize
System\Security\Cryptography\DESCryptoServiceProvider.Unix.cs (1)
46
public override int
FeedbackSize
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (1)
59
public override int
FeedbackSize
System\Security\Cryptography\RijndaelImplementation.cs (1)
47
public override int
FeedbackSize
System\Security\Cryptography\RijndaelManaged.cs (1)
43
public override int
FeedbackSize
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
21
public override int
FeedbackSize
11 writes to FeedbackSize
System.Security.Cryptography (11)
System\Security\Cryptography\AesCryptoServiceProvider.cs (2)
20
_impl.
FeedbackSize
= 8;
26
set { _impl.
FeedbackSize
= value; }
System\Security\Cryptography\AesManaged.cs (1)
25
set { _impl.
FeedbackSize
= value; }
System\Security\Cryptography\DESCryptoServiceProvider.Unix.cs (1)
49
set { _impl.
FeedbackSize
= value; }
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (2)
26
_impl.
FeedbackSize
= 8;
62
set { _impl.
FeedbackSize
= value; }
System\Security\Cryptography\RijndaelImplementation.cs (2)
27
_impl.
FeedbackSize
= 128;
50
set => _impl.
FeedbackSize
= value;
System\Security\Cryptography\RijndaelManaged.cs (2)
23
_impl.
FeedbackSize
= 128;
46
set => _impl.
FeedbackSize
= value;
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
24
set { _impl.
FeedbackSize
= value; }
18 references to FeedbackSize
System.Security.Cryptography (18)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
25
get { return _impl.
FeedbackSize
; }
System\Security\Cryptography\AesImplementation.cs (3)
200
ValidateCFBFeedbackSize(
FeedbackSize
);
209
this.GetPaddingSize(Mode,
FeedbackSize
),
210
FeedbackSize
/ BitsPerByte,
System\Security\Cryptography\AesManaged.cs (1)
24
get { return _impl.
FeedbackSize
; }
System\Security\Cryptography\DESCryptoServiceProvider.Unix.cs (1)
48
get { return _impl.
FeedbackSize
; }
System\Security\Cryptography\DesImplementation.cs (3)
82
ValidateCFBFeedbackSize(
FeedbackSize
);
91
FeedbackSize
/ BitsPerByte,
92
this.GetPaddingSize(Mode,
FeedbackSize
),
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (1)
61
get { return _impl.
FeedbackSize
; }
System\Security\Cryptography\RC2Implementation.cs (2)
75
ValidateCFBFeedbackSize(
FeedbackSize
);
79
return CreateTransformCore(Mode, Padding, rgbKey, rgbIV, BlockSize / BitsPerByte,
FeedbackSize
/ BitsPerByte, GetPaddingSize(), encrypting);
System\Security\Cryptography\RijndaelImplementation.cs (1)
49
get => _impl.
FeedbackSize
;
System\Security\Cryptography\RijndaelManaged.cs (1)
45
get => _impl.
FeedbackSize
;
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
23
get { return _impl.
FeedbackSize
; }
System\Security\Cryptography\TripleDesImplementation.cs (3)
79
ValidateCFBFeedbackSize(
FeedbackSize
);
88
this.GetPaddingSize(Mode,
FeedbackSize
),
89
FeedbackSize
/ BitsPerByte,