public RsaFileDecipherZipDecorator(IRsaFileDecipher rsaFileDecipher,
                                    IEnvironmentHelper environmentHelper,
                                    IZipAlgorithm zipAlgorithm)
 {
     this.rsaFileDecipher            = rsaFileDecipher;
     this.environmentHelper          = environmentHelper;
     this.zipAlgorithm               = zipAlgorithm;
     rsaFileDecipher.BlockCompleted += rsaFileDecipher_BlockCompleted;
 }
예제 #2
0
 public RsaFactory(IFileFactory fileFactory,
                   Options options,
                   IEnvironmentHelper environmentHelper,
                   IZipAlgorithm zipAlgorithm)
 {
     this.fileFactory       = fileFactory;
     this.options           = options;
     this.environmentHelper = environmentHelper;
     this.zipAlgorithm      = zipAlgorithm;
 }