1 write to _impl
System.Security.Cryptography (1)
System\Security\Cryptography\RijndaelManaged.cs (1)
22
_impl
= Aes.Create();
22 references to _impl
System.Security.Cryptography (22)
System\Security\Cryptography\RijndaelManaged.cs (22)
23
_impl
.FeedbackSize = 128;
28
get { return
_impl
.BlockSize; }
45
get =>
_impl
.FeedbackSize;
46
set =>
_impl
.FeedbackSize = value;
51
get { return
_impl
.IV; }
52
set {
_impl
.IV = value; }
57
get { return
_impl
.Key; }
58
set {
_impl
.Key = value; }
63
get { return
_impl
.KeySize; }
64
set {
_impl
.KeySize = value; }
68
get { return
_impl
.Mode; }
69
set {
_impl
.Mode = value; }
74
get { return
_impl
.Padding; }
75
set {
_impl
.Padding = value; }
79
public override KeySizes[] LegalKeySizes =>
_impl
.LegalKeySizes;
80
public override ICryptoTransform CreateEncryptor() =>
_impl
.CreateEncryptor();
81
public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) =>
_impl
.CreateEncryptor(rgbKey, rgbIV);
82
public override ICryptoTransform CreateDecryptor() =>
_impl
.CreateDecryptor();
83
public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) =>
_impl
.CreateDecryptor(rgbKey, rgbIV);
84
public override void GenerateIV() =>
_impl
.GenerateIV();
85
public override void GenerateKey() =>
_impl
.GenerateKey();
91
_impl
.Dispose();