public SwitchCipherDecryptTranform(int totalPairsCount, KeyedHashAlgorithm oMAC, IAONT oAONT, IRandomSwap oRandOrd) { moMAC = oMAC; moAONT = oAONT; moRandOrd = oRandOrd; miTotalPairsCount = totalPairsCount; }
public SwitchOAEP(KeyedHashAlgorithm oMAC, IAONT oAONT, IRandomSwap oRandOrd) { moMAC = oMAC; moAONT = oAONT; moAONT.seedSize = miTotalPairsCount / 8; // The seed size needn't be longer than the complexity due to swapping parts moRandOrd = oRandOrd; }