Example #1
0
File: ECB.cs Project: Ret4rd/MARS
 public ECB(ICoderBlock algorithm, FormFile form0)
 {
     _algorithm = algorithm;
     form       = form0;
 }
Example #2
0
File: OFB.cs Project: Ret4rd/MARS
 public OFB(ICoderBlock algorithm, byte[] c0, FormFile form0)
 {
     _c0        = c0;
     _algorithm = algorithm;
     form       = form0;
 }