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