protected override int DecryptBlock(byte[] inBuf, int inOff, int length, byte[] outBuf, int outOff) { byte[] dec; if (fpeParameters.Radix > 256) { if ((length & 1) != 0) { throw new ArgumentException("input must be an even number of bytes for a wide radix"); } ushort[] u16In = Pack.BE_To_UInt16(inBuf, inOff, length); ushort[] u16Out = SP80038G.DecryptFF1w(baseCipher, fpeParameters.Radix, fpeParameters.GetTweak(), u16In, 0, u16In.Length); dec = Pack.UInt16_To_BE(u16Out, 0, u16Out.Length); } else { dec = SP80038G.DecryptFF1(baseCipher, fpeParameters.Radix, fpeParameters.GetTweak(), inBuf, inOff, length); } Array.Copy(dec, 0, outBuf, outOff, length); return(length); }
protected override int decryptBlock(byte[] inBuf, int inOff, int length, byte[] outBuf, int outOff) { byte[] dec; if (fpeParameters.Radix > 256) { dec = toByteArray(SP80038G.DecryptFF3_1w(baseCipher, fpeParameters.Radix, fpeParameters.GetTweak(), toShortArray(inBuf), inOff, length / 2)); } else { dec = SP80038G.DecryptFF3_1(baseCipher, fpeParameters.Radix, fpeParameters.GetTweak(), inBuf, inOff, length); } Array.Copy(dec, 0, outBuf, outOff, length); return(length); }