encrypt.c 4.32 KB
Newer Older
Wentao Zhang 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
#include <stdio.h>
#include "api.h"

#include <string.h>
typedef unsigned long long u64;
typedef unsigned char u8;
typedef long long i64;

#define RATE 8

#define PR0_ROUNDS 52
#define PR_ROUNDS 28
#define PRF_ROUNDS 32

#define LOTR64(x,n) (((x)<<(n))|((x)>>(64-(n))))
#define U64BIG(x) (x)
static const u8 constant6[52] = { 0x01, 0x02, 0x04, 0x08, 0x10, 0x21, 0x03,
		0x06, 0x0c, 0x18, 0x31, 0x22, 0x05, 0x0a, 0x14, 0x29, 0x13, 0x27, 0x0f,
		0x1e, 0x3d, 0x3a, 0x34, 0x28, 0x11, 0x23, 0x07, 0x0e, 0x1c, 0x39, 0x32,
		0x24, 0x09, 0x12, 0x25, 0x0b, 0x16, 0x2d, 0x1b, 0x37, 0x2e, 0x1d, 0x3b,
		0x36, 0x2c, 0x19, 0x33, 0x26, 0x0d, 0x1a, 0x35, 0x2a };

#define sbox(a, b, c, d, f, g, h)                                                                            \
{                                                                                                                             \
	t1 = ~a; t2 = b & t1;t3 = c ^ t2; h = d ^ t3; t5 = b | c; t6 = d ^ t1; g = t5 ^ t6; t8 = b ^ d; t9 = t3 & t6; a = t8 ^ t9; t11 = g & t8; f = t3 ^ t11; \
}
#define ROUND256(i) {\
s[0]^=constant6[i];\
sbox(s[0], s[1], s[2], s[3], x5, x6, x7);\
s[1]=LOTR64(x5,1);\
s[2]=LOTR64(x6,8);\
s[3]=LOTR64(x7,25);\
}

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) {
	*clen = mlen + CRYPTO_ABYTES;
	u64 x7, x6, x5,i;
	u64  t1, t2, t3, t5, t6, t8, t9, t11;
	u8 tempData[8] = { 0 };
	u64 s[4] = { 0 };
	// initialization
	memcpy(s, npub,  CRYPTO_NPUBBYTES);
	memcpy(s + 2, k,  CRYPTO_KEYBYTES);
	for (i = 0; i < PR0_ROUNDS; i++) {
		ROUND256(i);
	}
	// process associated data
	if (adlen) {
		while (adlen >= RATE) {
			s[0] ^= U64BIG(((u64*)ad)[0]);
			for (i = 0; i < PR_ROUNDS; i++) {
				ROUND256(i);
			}
			adlen -= RATE;
			ad += RATE;
		}

		memset(tempData, 0, RATE);
		memcpy(tempData, ad, adlen );
		tempData[adlen] = 0x01;
		s[0] ^= U64BIG(((u64*)tempData)[0]);
		for (i = 0; i < PR_ROUNDS; i++) {
			ROUND256(i);
		}
	}
	s[3] ^= 0x8000000000000000;
	// process plaintext
	if (mlen) {
		while (mlen >= RATE) {
			s[0] ^= U64BIG(*(u64* )m);
			memcpy(c, s, RATE );
			for (i = 0; i < PR_ROUNDS; i++) {
				ROUND256(i);
			}
			mlen -= RATE;
			m += RATE;
			c += RATE;
		}
		memset(tempData, 0, RATE);
		memcpy(tempData, m, mlen);
		tempData[mlen] = 0x01;
		s[0] ^= U64BIG(((u64*)tempData)[0]);
		memcpy(c, s, mlen );
		c += mlen;
	}
	// finalization
	for (i = 0; i < PRF_ROUNDS; i++) {
		ROUND256(i);
	}
	// return tag
	memcpy(c, s, CRYPTO_ABYTES);
	return 0;
}

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) {
	if (clen < CRYPTO_KEYBYTES)
		return -1;
	*mlen = clen - CRYPTO_KEYBYTES;
	u64 x7, x6, x5, i;
	u64  t1, t2, t3, t5, t6, t8, t9, t11;
	u8 tempData[8] = { 0 };
	u64 s[4] = { 0 };
	// initialization
	memcpy(s, npub, CRYPTO_NPUBBYTES);
	memcpy(s + 2, k,  CRYPTO_KEYBYTES);
	for (i = 0; i < PR0_ROUNDS; i++) {
		ROUND256(i);
	}
	// process associated data
	if (adlen) {
		while (adlen >= RATE) {
			s[0] ^= U64BIG(((u64*)ad)[0]);
			for (i = 0; i < PR_ROUNDS; i++) {
				ROUND256(i);
			}
			adlen -= RATE;
			ad += RATE;
		}

		memset(tempData, 0, RATE);
		memcpy(tempData, ad, adlen );
		tempData[adlen] = 0x01;
		s[0] ^= U64BIG(((u64*)tempData)[0]);
		for (i = 0; i < PR_ROUNDS; i++) {
			ROUND256(i);
		}
	}
	s[3] ^= 0x8000000000000000;
	clen -= CRYPTO_ABYTES;
	if (clen) {
		while (clen >= RATE) {
			U64BIG(*(u64*)(m)) = s[0] ^ U64BIG(*(u64*)(c));
			memcpy(s, c, RATE );
			for (i = 0; i < PR_ROUNDS; i++) {
				ROUND256(i);
			}
			clen -= RATE;
			m += RATE;
			c += RATE;
		}
		memset(tempData, 0, RATE);
		memcpy(tempData, c, clen );
		tempData[clen] = 0x01;
		s[0] ^= U64BIG(*(u64*)(tempData));
		memcpy(m, s, clen );
		memcpy(s, c, clen );
		c += clen;
	}
	// finalization
	for (i = 0; i < PRF_ROUNDS; i++) {
		ROUND256(i);
	}
	if (memcmp((void*)s, (void*)c, CRYPTO_ABYTES)) {
		memset(m, 0, (*mlen));
		*mlen = 0;
		return -1;
	}
	return 0;
}