1 write to _impl
System.Security.Cryptography (1)
System\Security\Cryptography\DESCryptoServiceProvider.Unix.cs (1)
19
_impl
= DES.Create();
23 references to _impl
System.Security.Cryptography (23)
System\Security\Cryptography\DESCryptoServiceProvider.Unix.cs (23)
24
get { return
_impl
.BlockSize; }
25
set {
_impl
.BlockSize = value; }
28
public override ICryptoTransform CreateDecryptor() =>
_impl
.CreateDecryptor();
29
public override ICryptoTransform CreateEncryptor() =>
_impl
.CreateEncryptor();
32
_impl
.CreateEncryptor(rgbKey, CapiHelper.TrimLargeIV(rgbIV, BlockSize));
35
_impl
.CreateDecryptor(rgbKey, CapiHelper.TrimLargeIV(rgbIV, BlockSize));
41
_impl
.Dispose();
48
get { return
_impl
.FeedbackSize; }
49
set {
_impl
.FeedbackSize = value; }
52
public override void GenerateIV() =>
_impl
.GenerateIV();
53
public override void GenerateKey() =>
_impl
.GenerateKey();
57
get { return
_impl
.IV; }
58
set {
_impl
.IV = value; }
63
get { return
_impl
.Key; }
64
set {
_impl
.Key = value; }
69
get { return
_impl
.KeySize; }
70
set {
_impl
.KeySize = value; }
73
public override KeySizes[] LegalBlockSizes =>
_impl
.LegalBlockSizes;
74
public override KeySizes[] LegalKeySizes =>
_impl
.LegalKeySizes;
78
get { return
_impl
.Mode; }
79
set {
_impl
.Mode = value; }
84
get { return
_impl
.Padding; }
85
set {
_impl
.Padding = value; }