BlockCipher ivCipher = sessionKey.ivCipher;
byte[] IV = new byte[ivCipher.getBlockSize() / 8];
System.arraycopy(sessionKey.ivNonce, 0, IV, 0, IV.length);
System.arraycopy(seqNumBytes, 0, IV, IV.length - seqNumBytes.length, seqNumBytes.length);
ivCipher.encipher(IV, IV);
PCFBMode cipher = PCFBMode.create(sessionKey.incommingCipher, IV);
cipher.blockEncipher(seqNumBytes, 0, seqNumBytes.length);
return seqNumBytes;