Path: blob/main/crypto/libecc/src/examples/hash/tdes.h
34889 views
/*1* Copyright (C) 2021 - This file is part of libecc project2*3* Authors:4* Ryad BENADJILA <[email protected]>5* Arnaud EBALARD <[email protected]>6*7* This software is licensed under a dual BSD and GPL v2 license.8* See LICENSE file at the root folder of the project.9*/1011#ifndef __TDES_H__12#define __TDES_H__1314/* Include libec for useful types and macros */15#include <libecc/libec.h>1617typedef enum {18DES_ENCRYPTION = 0,19DES_DECRYPTION = 1,20} des_direction;2122/* DES context */23typedef struct {24des_direction dir;25u64 sk[16]; /* encryption/decryption subkeys */26} des_context;2728/* Triple DES context */29typedef struct {30des_direction dir;31des_context des[3];32} des3_context;3334/* Odd parity table */35static const u8 odd_parity[256] = {361, 1, 2, 2, 4, 4, 7, 7, 8, 8, 11, 11, 13, 13, 14, 14,3716, 16, 19, 19, 21, 21, 22, 22, 25, 25, 26, 26, 28, 28, 31, 31,3832, 32, 35, 35, 37, 37, 38, 38, 41, 41, 42, 42, 44, 44, 47, 47,3949, 49, 50, 50, 52, 52, 55, 55, 56, 56, 59, 59, 61, 61, 62, 62,4064, 64, 67, 67, 69, 69, 70, 70, 73, 73, 74, 74, 76, 76, 79, 79,4181, 81, 82, 82, 84, 84, 87, 87, 88, 88, 91, 91, 93, 93, 94, 94,4297, 97, 98, 98, 100, 100, 103, 103, 104, 104, 107, 107, 109, 109, 110,43110,44112, 112, 115, 115, 117, 117, 118, 118, 121, 121, 122, 122, 124, 124, 127,45127,46128, 128, 131, 131, 133, 133, 134, 134, 137, 137, 138, 138, 140, 140, 143,47143,48145, 145, 146, 146, 148, 148, 151, 151, 152, 152, 155, 155, 157, 157, 158,49158,50161, 161, 162, 162, 164, 164, 167, 167, 168, 168, 171, 171, 173, 173, 174,51174,52176, 176, 179, 179, 181, 181, 182, 182, 185, 185, 186, 186, 188, 188, 191,53191,54193, 193, 194, 194, 196, 196, 199, 199, 200, 200, 203, 203, 205, 205, 206,55206,56208, 208, 211, 211, 213, 213, 214, 214, 217, 217, 218, 218, 220, 220, 223,57223,58224, 224, 227, 227, 229, 229, 230, 230, 233, 233, 234, 234, 236, 236, 239,59239,60241, 241, 242, 242, 244, 244, 247, 247, 248, 248, 251, 251, 253, 253, 254,6125462};6364/* DES key schedule */65ATTRIBUTE_WARN_UNUSED_RET int des_set_key(des_context *ctx, const u8 k[8], des_direction dir);6667/* DES encryption/decryption */68ATTRIBUTE_WARN_UNUSED_RET int des(const des_context *ctx, const u8 input[8], u8 output[8]);6970/* TDES key schedules */71ATTRIBUTE_WARN_UNUSED_RET int des3_set_keys(des3_context *ctx, const u8 k1[8], const u8 k2[8], const u8 k3[8], des_direction dir);7273/* TDES encryption/decryption */74ATTRIBUTE_WARN_UNUSED_RET int des3(const des3_context *ctx, const u8 input[8], u8 output[8]);7576#endif /* __TDES_H__ */777879