1 write to _wrapped
System.Security.Cryptography (1)
System\Security\Cryptography\RSAWrapper.cs (1)
17_wrapped = wrapped;
49 references to _wrapped
System.Security.Cryptography (49)
System\Security\Cryptography\RSAWrapper.cs (49)
22get => _wrapped.KeySize; 23set => _wrapped.KeySize = value; 26public override KeySizes[] LegalKeySizes => _wrapped.LegalKeySizes; 31_wrapped.ExportEncryptedPkcs8PrivateKey(passwordBytes, pbeParameters); 36_wrapped.ExportEncryptedPkcs8PrivateKey(password, pbeParameters); 38public override byte[] ExportPkcs8PrivateKey() => _wrapped.ExportPkcs8PrivateKey(); 40public override byte[] ExportSubjectPublicKeyInfo() => _wrapped.ExportSubjectPublicKeyInfo(); 42public override void FromXmlString(string xmlString) => _wrapped.FromXmlString(xmlString); 45_wrapped.ToXmlString(includePrivateParameters); 48_wrapped.ExportParameters(includePrivateParameters); 50public override void ImportParameters(RSAParameters parameters) => _wrapped.ImportParameters(parameters); 52public override byte[] Encrypt(byte[] data, RSAEncryptionPadding padding) => _wrapped.Encrypt(data, padding); 54public override byte[] Decrypt(byte[] data, RSAEncryptionPadding padding) => _wrapped.Decrypt(data, padding); 60_wrapped.SignHash(hash, hashAlgorithm, padding); 67_wrapped.VerifyHash(hash, signature, hashAlgorithm, padding); 74_wrapped.TryDecrypt(data, destination, padding, out bytesWritten); 81_wrapped.TryEncrypt(data, destination, padding, out bytesWritten); 89_wrapped.TrySignHash(hash, destination, hashAlgorithm, padding, out bytesWritten); 96_wrapped.VerifyHash(hash, signature, hashAlgorithm, padding); 100public override byte[] DecryptValue(byte[] rgb) => _wrapped.DecryptValue(rgb); 104public override byte[] EncryptValue(byte[] rgb) => _wrapped.EncryptValue(rgb); 112_wrapped.SignData(data, offset, count, hashAlgorithm, padding); 115_wrapped.SignData(data, hashAlgorithm, padding); 123_wrapped.TrySignData(data, destination, hashAlgorithm, padding, out bytesWritten); 132_wrapped.VerifyData(data, offset, count, signature, hashAlgorithm, padding); 139_wrapped.VerifyData(data, signature, hashAlgorithm, padding); 141public override byte[] ExportRSAPrivateKey() => _wrapped.ExportRSAPrivateKey(); 144_wrapped.TryExportRSAPrivateKey(destination, out bytesWritten); 146public override byte[] ExportRSAPublicKey() => _wrapped.ExportRSAPublicKey(); 149_wrapped.TryExportRSAPublicKey(destination, out bytesWritten); 152_wrapped.TryExportSubjectPublicKeyInfo(destination, out bytesWritten); 155_wrapped.TryExportPkcs8PrivateKey(destination, out bytesWritten); 162_wrapped.TryExportEncryptedPkcs8PrivateKey(password, pbeParameters, destination, out bytesWritten); 169_wrapped.TryExportEncryptedPkcs8PrivateKey(passwordBytes, pbeParameters, destination, out bytesWritten); 172_wrapped.ImportSubjectPublicKeyInfo(source, out bytesRead); 175_wrapped.ImportRSAPublicKey(source, out bytesRead); 178_wrapped.ImportRSAPrivateKey(source, out bytesRead); 181_wrapped.ImportPkcs8PrivateKey(source, out bytesRead); 187_wrapped.ImportEncryptedPkcs8PrivateKey(passwordBytes, source, out bytesRead); 193_wrapped.ImportEncryptedPkcs8PrivateKey(password, source, out bytesRead); 196_wrapped.ImportFromPem(input); 199_wrapped.ImportFromEncryptedPem(input, password); 202_wrapped.ImportFromEncryptedPem(input, passwordBytes); 204public override string? KeyExchangeAlgorithm => _wrapped.KeyExchangeAlgorithm; 206public override string SignatureAlgorithm => _wrapped.SignatureAlgorithm; 212_wrapped.Dispose(); 218public override bool Equals(object? obj) => _wrapped.Equals(obj); 220public override int GetHashCode() => _wrapped.GetHashCode(); 222public override string ToString() => _wrapped.ToString()!;