Beispiel #1
0
 public HsmCertificateProvider(IThumbprintConfig thumbprintConfig)
 {
     _ThumbprintConfig = thumbprintConfig;
 }
 public X509CertificateProvider(IThumbprintConfig thumbprintConfig, ILogger <X509CertificateProvider> logger)
 {
     _ThumbprintConfig = thumbprintConfig ?? throw new ArgumentNullException(nameof(thumbprintConfig));
     _Logger           = logger;
 }
Beispiel #3
0
 public LocalMachineStoreCertificateProvider(IThumbprintConfig thumbprintConfig, LocalMachineStoreCertificateProviderLoggingExtensions logger)
 {
     _thumbprintConfig = thumbprintConfig ?? throw new ArgumentNullException(nameof(thumbprintConfig));
     _logger           = logger;
 }
Beispiel #4
0
 public NlContentResignExistingV1ContentCommand(NlContentResignCommand resigner, IThumbprintConfig v2ThumbprintConfig, ILogger <NlContentResignExistingV1ContentCommand> logger)
 {
     _Resigner           = resigner ?? throw new ArgumentNullException(nameof(resigner));
     _V2ThumbprintConfig = v2ThumbprintConfig ?? throw new ArgumentNullException(nameof(v2ThumbprintConfig));
     _Logger             = logger ?? throw new ArgumentNullException(nameof(logger));
 }
 public LocalMachineStoreCertificateProvider(IThumbprintConfig thumbprintConfig, ILogger <LocalMachineStoreCertificateProvider> logger)
 {
     _ThumbprintConfig = thumbprintConfig ?? throw new ArgumentNullException(nameof(thumbprintConfig));
     _Logger           = logger;
 }