* \license GPLv3 or later
*
*/
-#include <stdint.h>
-#include <string.h>
+
+#include "des.h"
const uint8_t sbox[256] = {
/* S-box 1 */
for(byte=0; byte<ob; ++byte){
uint8_t x,t=0;
for(bit=0; bit<8; ++bit){
- x=*ptable++ -1 ;
+ x = *ptable++ - 1;
t<<=1;
if((in[x/8]) & (0x80>>(x%8)) ){
t|=0x01;