encrypt.c 8.8 KB
Newer Older
lwc-tester committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330


/* Reference Implementation of Sycon-128 AEAD
   Written by:
   Kalikinkar Mandal <kmandal@uwaterloo.ca>
*/

#include<stdio.h>
#include<math.h>
#include<stdlib.h>
#include<stdint.h>

#define NUMRATEBYTES    8

#define ADDS	0x80
#define PTDS	0x40
#define TDS     0x20

#include "sycon.h"
#include "crypto_aead.h" 
#include "api.h" 

#define KAT_SUCCESS          0
#define KAT_FILE_OPEN_ERROR -1
#define KAT_DATA_ERROR      -3
#define KAT_CRYPTO_FAILURE  -4


int sycon_load( unsigned char *state, const unsigned char *npub, const unsigned char *k )
{
	unsigned char i;

	for ( i = 0; i < STATEBYTES; i++ )
		state[i] = 0x0;
		
	if ( CRYPTO_KEYBYTES == 16 && CRYPTO_NPUBBYTES == 16 )
	{
		//Load key at state[0...15]
		for ( i = 0; i < 16; i++ )
			state[i] = k[i];

		//Assigning nonce at state[16...31]
		for ( i = 0; i < 16; i++ )
			state[16+i] = npub[i];
		
		sycon_perm(state);

		for ( i = 0; i < NUMRATEBYTES; i++ )
			state[i]^=k[i];
		sycon_perm(state);
                
		for ( i = 0; i < NUMRATEBYTES; i++ )
			state[i]^=k[NUMRATEBYTES+i];
                //Domain separator
                state[STATEBYTES-1]^=ADDS;
		sycon_perm(state);
	}
	else
	{
		return KAT_CRYPTO_FAILURE;
	}
return KAT_SUCCESS;
}

int sycon_tag(
              unsigned char *tag,
              const unsigned char tlen,
              unsigned char *state,
              const unsigned char *k
              )
{
        unsigned char i;
        if ( CRYPTO_KEYBYTES == 16 && tlen == 16 )
        {
                for ( i = 0; i < NUMRATEBYTES; i++ )
                        state[i]^=k[i];
                //Domain separator
                state[STATEBYTES-1]^=TDS;
                sycon_perm(state);
                
                for ( i = 0; i < NUMRATEBYTES; i++ )
                        state[i]^=k[NUMRATEBYTES+i];
                //Domain separator
                state[STATEBYTES-1]^=TDS;
                
                sycon_perm(state);
                
                for ( i = 0; i < 16; i++ )
                {
                        tag[i] = state[i+16];
                }
        }
        else
        {
                printf("Invalid key and tag length pair.\n");
                return KAT_CRYPTO_FAILURE;
        }
        return KAT_SUCCESS;
}


int sycon_ad(
			unsigned char *state,
			const unsigned char *ad, 
			const u64 adlen
		     )
{
	unsigned char i, last_block_len;
	u64 j, num_ad_block;
	num_ad_block = adlen/NUMRATEBYTES;
	last_block_len = (unsigned char)(adlen%NUMRATEBYTES);

	if ( adlen == 0 )
		return(KAT_SUCCESS);
	
	//Processing associated data
	for ( j = 0; j < num_ad_block; j++ )
	{
		for ( i = 0; i < NUMRATEBYTES; i++ )
			state[i]^=ad[NUMRATEBYTES*j+((u64)i)];
		//Domain separator
                state[STATEBYTES-1]^=ADDS;
		sycon_perm_r64(state);
	}

	//Processing the last block
	if ( last_block_len != 0 )
	{
		for ( i = 0; i < last_block_len; i++ )
			state[i]^=ad[num_ad_block*8+(u64)i];

		state[last_block_len]^=(0x01); //Padding: 10*
		//Domain separator
		state[STATEBYTES-1]^=PTDS;
		sycon_perm_r64(state );
	}
	else
	{
		state[0]^=(0x01); //Padding: 10*
                //Domain separator
                state[STATEBYTES-1]^=PTDS;
		sycon_perm_r64(state);
	}

return (KAT_SUCCESS);
}

int crypto_aead_encrypt(
			unsigned char *c,unsigned long long *clen,
			const unsigned char *m,unsigned long long mlen,
			const unsigned char *ad,unsigned long long adlen,
			const unsigned char *nsec,
			const unsigned char *npub,
			const unsigned char *k
			)
{
	unsigned char *state;
	unsigned char *tag;
	unsigned char i, last_block_len;
	//int func_ret;
	u64 j, num_pt_block;

	num_pt_block = mlen/8;
	last_block_len = (unsigned char)(mlen%8);

	state = (unsigned char *)malloc(sizeof(unsigned char)*STATEBYTES);
	tag = (unsigned char *)malloc(sizeof(unsigned char)*CRYPTO_ABYTES);

	//Load the key an nonce into state and initialize the state
	if ( sycon_load(state, npub, k)!= KAT_SUCCESS )
		return(KAT_CRYPTO_FAILURE);
	//Processing Associated Data	
        if ( adlen != 0 )
        {
                if ( sycon_ad( state, ad, adlen) != KAT_SUCCESS)
                        return(KAT_CRYPTO_FAILURE);
        }
        
	//Processing Plaintext
        if ( mlen != 0 )
        {
                for ( j = 0; j < num_pt_block; j++ )
                {
                        for ( i = 0; i < NUMRATEBYTES; i++ )
                        {
                                c[NUMRATEBYTES*j+((u64)i)] = m[NUMRATEBYTES*j+((u64)i)]^state[i];
                                state[i] = c[NUMRATEBYTES*j+((u64)i)];
                        }
                        //Domain seperator
                        state[STATEBYTES-1]^=PTDS;
                
                        sycon_perm_r64(state);
                }

                if ( last_block_len != 0 )
                {
                        for ( i = 0; i < last_block_len; i++ )
                        {
                                c[NUMRATEBYTES*num_pt_block+((u64)i)] = m[num_pt_block*NUMRATEBYTES+(u64)i]^state[i];
                                state[i] = c[NUMRATEBYTES*num_pt_block+((u64)i)];
                        }
			state[last_block_len]^=(0x01); //Padding: 10*

                        //Domain separator
                        state[STATEBYTES-1]^=TDS;
                        sycon_perm_r64(state);
                }
		else
		{
			state[0]^=(0x01); //Padding: 10*
                        //Domain separator
                        state[STATEBYTES-1]^=TDS;
			sycon_perm_r64(state);
		}
        }
        else
	{
		state[0]^=(0x01); //Padding: 10*
                //Domain separator
                state[STATEBYTES-1]^=TDS;
		sycon_perm_r64(state);
	}
	
	if ( sycon_tag( tag, CRYPTO_ABYTES, state, k ) != KAT_SUCCESS )
		return(KAT_CRYPTO_FAILURE);
        else
        {
                for ( i = 0; i < CRYPTO_ABYTES; i++ )
                        c[mlen+(u64)i] = tag[i];
        }
	*clen = mlen+CRYPTO_ABYTES;
        
	free(state);
	free(tag);
return KAT_SUCCESS;
}

int crypto_aead_decrypt(
			unsigned char *m,unsigned long long *mlen,
			unsigned char *nsec,
			const unsigned char *c,unsigned long long clen,
			const unsigned char *ad,unsigned long long adlen,
			const unsigned char *npub,
			const unsigned char *k
			)
{
	unsigned char i, last_block_len;
	u64 j, num_ct_block1, num_ct_block;
        num_ct_block1 = clen - CRYPTO_ABYTES;
        num_ct_block = num_ct_block1/NUMRATEBYTES;
	last_block_len = (unsigned char)(num_ct_block1%NUMRATEBYTES);
	
	unsigned char *state;
	unsigned char *tag;

	state = (unsigned char *)malloc(sizeof(unsigned char)*STATEBYTES);
	tag = (unsigned char *)malloc(sizeof(unsigned char)*CRYPTO_ABYTES);

	//Initialize state with "key" and "nonce" and then absorbe "key" again
	if ( sycon_load(state, npub, k)!= KAT_SUCCESS )
		return(KAT_CRYPTO_FAILURE);

	//Absorbing "ad"
        if ( adlen != 0 )
        {
                if ( sycon_ad( state, ad, adlen) != KAT_SUCCESS)
                        return(KAT_CRYPTO_FAILURE);
        }

        if ( num_ct_block1 != 0 )
        {
                for ( j = 0; j < num_ct_block; j++ )
                {
                        for ( i = 0; i < NUMRATEBYTES; i++ )
                        {
                                m[NUMRATEBYTES*j+((u64)i)] = c[NUMRATEBYTES*j+((u64)i)]^state[i];
                                state[i] = c[NUMRATEBYTES*j+((u64)i)];
                        }
                        //Domain separator
                        state[STATEBYTES-1]^=PTDS;
                        sycon_perm_r64(state);
                }

                if ( last_block_len != 0 )
                {
                        //Decrypting last 64-bit block
                        for ( i = 0; i < last_block_len; i++ )
                        {
                                m[NUMRATEBYTES*num_ct_block +((u64)i)] = c[NUMRATEBYTES*num_ct_block +((u64)i)]^state[i];
                                state[i] = c[NUMRATEBYTES*num_ct_block +((u64)i)];
                        }
			state[i]^=(0x01); //Padding: 10*

                        //Domain separator
                        state[STATEBYTES-1]^=TDS;
                        sycon_perm_r64(state);
                }
		else
		{
			state[0]^=(0x01); //Padding: 10*
                        //Domain separator
                        state[STATEBYTES-1]^=TDS;
			sycon_perm_r64(state );
		}
        }
        else
        {
                state[0]^=(0x01); //Padding: 10*
                //Domain separator
                state[STATEBYTES-1]^=TDS;
                sycon_perm_r64(state );
        }
	
	if ( sycon_tag( tag, CRYPTO_ABYTES, state, k ) != KAT_SUCCESS )
		return(KAT_CRYPTO_FAILURE);
        else
        {
                for ( i = 0; i < CRYPTO_ABYTES; i++ )
                {
                        if ( c[num_ct_block1+(u64)i] != tag[i] )
                                return(KAT_CRYPTO_FAILURE);
                }
        }
	*mlen = clen-CRYPTO_ABYTES;

	free(state);
	free(tag);
	
return KAT_SUCCESS;
}