1 write to _impl
System.Security.Cryptography (1)
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (1)
52
_impl
= DSA.Create();
25 references to _impl
System.Security.Cryptography (25)
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (25)
69
public override byte[] CreateSignature(byte[] rgbHash) =>
_impl
.CreateSignature(rgbHash);
72
_impl
.TryCreateSignature(hash, destination, out bytesWritten);
84
_impl
.Dispose();
96
_impl
.ExportParameters(includePrivateParameters);
98
public override void FromXmlString(string xmlString) =>
_impl
.FromXmlString(xmlString);
136
_impl
.ImportParameters(parameters);
146
_impl
.ImportEncryptedPkcs8PrivateKey(passwordBytes, source, out bytesRead);
154
_impl
.ImportEncryptedPkcs8PrivateKey(password, source, out bytesRead);
157
public override string? KeyExchangeAlgorithm =>
_impl
.KeyExchangeAlgorithm;
161
get { return
_impl
.KeySize; }
168
_impl
.KeySize = value;
186
return
_impl
.SignData(buffer, HashAlgorithmName.SHA1);
191
return
_impl
.SignData(buffer, offset, count, HashAlgorithmName.SHA1);
196
return
_impl
.SignData(inputStream, HashAlgorithmName.SHA1);
200
_impl
.ToXmlString(includePrivateParameters);
207
return
_impl
.SignData(data, offset, count, hashAlgorithm);
215
return
_impl
.SignData(data, hashAlgorithm);
223
return
_impl
.TrySignData(data, destination, hashAlgorithm, out bytesWritten);
244
_impl
.VerifyData(rgbData, rgbSignature, HashAlgorithmName.SHA1);
257
return
_impl
.VerifySignature(rgbHash, rgbSignature);
265
return
_impl
.VerifyData(data, offset, count, signature, hashAlgorithm);
273
return
_impl
.VerifyData(data, signature, hashAlgorithm);
281
return
_impl
.VerifyData(data, signature, hashAlgorithm);
285
_impl
.VerifySignature(rgbHash, rgbSignature);
288
_impl
.VerifySignature(hash, signature);