public void DecryptBlock(byte[] key, byte[] input, byte[] output) { Des.EncryptDecrypt(key, input, output, false); }