コード例 #1
0
ファイル: CryptoService.cs プロジェクト: maxlandry/mobile
 public CryptoService(
     ISecureStorageService secureStorage,
     IKeyDerivationService keyDerivationService)
 {
     _secureStorage        = secureStorage;
     _keyDerivationService = keyDerivationService;
 }
コード例 #2
0
 public CommitmentTransactionService(ILoggerFactory loggerFactory, IKeyDerivationService derivationService, IChannelLoggingService channelLoggingService)
 {
     _logger                = loggerFactory.CreateLogger(GetType());
     _derivationService     = derivationService;
     _channelLoggingService = channelLoggingService;
 }