1 write to _wrapped
System.Security.Cryptography (1)
System\Security\Cryptography\DSAWrapper.cs (1)
17_wrapped = wrapped;
38 references to _wrapped
System.Security.Cryptography (38)
System\Security\Cryptography\DSAWrapper.cs (38)
21_wrapped.ExportParameters(includePrivateParameters); 24_wrapped.ImportParameters(parameters); 27_wrapped.CreateSignature(rgbHash); 30_wrapped.VerifySignature(rgbHash, rgbSignature); 33_wrapped.SignData(data, offset, count, hashAlgorithm); 36_wrapped.SignData(data, hashAlgorithm); 44_wrapped.VerifyData(data, offset, count, signature, hashAlgorithm); 47_wrapped.VerifyData(data, signature, hashAlgorithm); 50_wrapped.TryCreateSignature(hash, destination, out bytesWritten); 57_wrapped.TrySignData(data, destination, hashAlgorithm, out bytesWritten); 63_wrapped.VerifyData(data, signature, hashAlgorithm); 66_wrapped.VerifySignature(hash, signature); 73_wrapped.TryExportEncryptedPkcs8PrivateKey(passwordBytes, pbeParameters, destination, out bytesWritten); 80_wrapped.TryExportEncryptedPkcs8PrivateKey(password, pbeParameters, destination, out bytesWritten); 83_wrapped.TryExportPkcs8PrivateKey(destination, out bytesWritten); 86_wrapped.TryExportSubjectPublicKeyInfo(destination, out bytesWritten); 92_wrapped.ImportEncryptedPkcs8PrivateKey(passwordBytes, source, out bytesRead); 98_wrapped.ImportEncryptedPkcs8PrivateKey(password, source, out bytesRead); 101_wrapped.ImportPkcs8PrivateKey(source, out bytesRead); 104_wrapped.ImportSubjectPublicKeyInfo(source, out bytesRead); 106public override void ImportFromPem(ReadOnlySpan<char> input) => _wrapped.ImportFromPem(input); 109_wrapped.ImportFromEncryptedPem(input, password); 112_wrapped.ImportFromEncryptedPem(input, passwordBytes); 114public override void FromXmlString(string xmlString) => _wrapped.FromXmlString(xmlString); 117_wrapped.ToXmlString(includePrivateParameters); 121get => _wrapped.KeySize; 122set => _wrapped.KeySize = value; 125public override KeySizes[] LegalKeySizes => _wrapped.LegalKeySizes; 127public override string? SignatureAlgorithm => _wrapped.SignatureAlgorithm; 129public override string? KeyExchangeAlgorithm => _wrapped.KeyExchangeAlgorithm; 135_wrapped.Dispose(); 142_wrapped.ExportEncryptedPkcs8PrivateKey(passwordBytes, pbeParameters); 147_wrapped.ExportEncryptedPkcs8PrivateKey(password, pbeParameters); 149public override byte[] ExportPkcs8PrivateKey() => _wrapped.ExportPkcs8PrivateKey(); 151public override byte[] ExportSubjectPublicKeyInfo() => _wrapped.ExportSubjectPublicKeyInfo(); 153public override bool Equals(object? obj) => _wrapped.Equals(obj); 155public override int GetHashCode() => _wrapped.GetHashCode(); 157public override string ToString() => _wrapped.ToString()!;