1 write to _wrapped
System.Security.Cryptography (1)
System\Security\Cryptography\ECDsaWrapper.cs (1)
17_wrapped = wrapped;
41 references to _wrapped
System.Security.Cryptography (41)
System\Security\Cryptography\ECDsaWrapper.cs (41)
21_wrapped.SignData(data, hashAlgorithm); 24_wrapped.SignData(data, offset, count, hashAlgorithm); 31_wrapped.TrySignData(data, destination, hashAlgorithm, out bytesWritten); 34_wrapped.SignData(data, hashAlgorithm); 42_wrapped.VerifyData(data, offset, count, signature, hashAlgorithm); 48_wrapped.VerifyData(data, signature, hashAlgorithm); 50public override byte[] SignHash(byte[] hash) => _wrapped.SignHash(hash); 52public override bool VerifyHash(byte[] hash, byte[] signature) => _wrapped.VerifyHash(hash, signature); 54public override string? KeyExchangeAlgorithm => _wrapped.KeyExchangeAlgorithm; 56public override void FromXmlString(string xmlString) => _wrapped.FromXmlString(xmlString); 59_wrapped.ToXmlString(includePrivateParameters); 65_wrapped.Dispose(); 73_wrapped.ImportEncryptedPkcs8PrivateKey(passwordBytes, source, out bytesRead); 79_wrapped.ImportEncryptedPkcs8PrivateKey(password, source, out bytesRead); 84_wrapped.ImportPkcs8PrivateKey(source, out bytesRead); 89_wrapped.ImportSubjectPublicKeyInfo(source, out bytesRead); 94_wrapped.ImportECPrivateKey(source, out bytesRead); 96public override byte[] ExportECPrivateKey() => _wrapped.ExportECPrivateKey(); 101_wrapped.TryExportECPrivateKey(destination, out bytesWritten); 106_wrapped.ExportEncryptedPkcs8PrivateKey(passwordBytes, pbeParameters); 111_wrapped.ExportEncryptedPkcs8PrivateKey(password, pbeParameters); 118public override byte[] ExportSubjectPublicKeyInfo() => _wrapped.ExportSubjectPublicKeyInfo(); 121_wrapped.ExportParameters(includePrivateParameters); 124_wrapped.ExportExplicitParameters(includePrivateParameters); 127_wrapped.ImportParameters(parameters); 129public override void GenerateKey(ECCurve curve) => _wrapped.GenerateKey(curve); 136_wrapped.TryExportEncryptedPkcs8PrivateKey(passwordBytes, pbeParameters, destination, out bytesWritten); 143_wrapped.TryExportEncryptedPkcs8PrivateKey(password, pbeParameters, destination, out bytesWritten); 152_wrapped.TryExportSubjectPublicKeyInfo(destination, out bytesWritten); 155_wrapped.ImportFromEncryptedPem(input, password); 158_wrapped.ImportFromEncryptedPem(input, passwordBytes); 160public override void ImportFromPem(ReadOnlySpan<char> input) => _wrapped.ImportFromPem(input); 164get => _wrapped.KeySize; 165set => _wrapped.KeySize = value; 168public override KeySizes[] LegalKeySizes => _wrapped.LegalKeySizes; 170public override string SignatureAlgorithm => _wrapped.SignatureAlgorithm; 173_wrapped.TrySignHash(hash, destination, out bytesWritten); 176_wrapped.VerifyHash(hash, signature); 178public override bool Equals(object? obj) => _wrapped.Equals(obj); 180public override int GetHashCode() => _wrapped.GetHashCode(); 182public override string ToString() => _wrapped.ToString()!;