2 writes to _privateKey
System.Security.Cryptography.Pkcs (2)
System\Security\Cryptography\Pkcs\CmsSigner.cs (2)
34set => _privateKey = value; 204_privateKey = (IDisposable?)privateKey;
6 references to _privateKey
System.Security.Cryptography.Pkcs (6)
System\Security\Cryptography\Pkcs\CmsSigner.cs (6)
33get => _privateKey as AsymmetricAlgorithm; 42bool HasPrivateKey => _privateKey is not null; 221if (_privateKey == null && !Certificate.HasPrivateKey) 399CmsSignature? processor = CmsSignature.ResolveAndVerifyKeyType(keyAlgorithm, _privateKey, SignaturePadding); 415CmsSignature? processor = CmsSignature.ResolveAndVerifyKeyType(Certificate!.GetKeyAlgorithm(), _privateKey, SignaturePadding); 433_privateKey,