65 register DES_LONG tout0,tout1,tin0,tin1;
68 unsigned char *
out = &(*output)[0];
69 const unsigned char *iv = &(*ivec)[0];
83 tin0^=tout0; tin[0]=tin0;
84 tin1^=tout1; tin[1]=tin1;
95 tout0=tin0=tin1=tin[0]=tin[1]=0;
101 tout1 = ((tout1 >> 24L) & 0x000000FF)
102 | ((tout1 >> 8L) & 0x0000FF00)
103 | ((tout1 << 8L) & 0x00FF0000)
104 | ((tout1 << 24L) & 0xFF000000);