예제 #1
0
 public BreakRepeatingKeyXOR(IGetHammingDistance hammingDistance, ISingleByteXORCipher xorCipher, IFixedXOR fixedXOR, IConvertHex convertor)
 {
     _hammingDistance = hammingDistance;
     _xorCipher       = xorCipher;
     _fixedXOR        = fixedXOR;
     _convertor       = convertor;
 }
 public DecryptAESInECBMode(IConvertHex convertor)
 {
     _convertor = convertor;
 }
예제 #3
0
 public virtual void SetUp()
 {
     _converter = new ConvertHex();
 }