From 0dfd6cf901d34b5774fa406c44fcfbe9e3ef6d5e Mon Sep 17 00:00:00 2001 From: Rob Percival Date: Mon, 29 Feb 2016 20:25:08 +0000 Subject: Addresses review comments from richsalz Reviewed-by: Ben Laurie Reviewed-by: Rich Salz --- crypto/ct/ct_oct.c | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'crypto/ct/ct_oct.c') diff --git a/crypto/ct/ct_oct.c b/crypto/ct/ct_oct.c index 73fc61d..d9fa68a 100644 --- a/crypto/ct/ct_oct.c +++ b/crypto/ct/ct_oct.c @@ -70,30 +70,6 @@ #include "ct_locl.h" -#define n2s(c,s) ((s=(((unsigned int)((c)[0]))<< 8)| \ - (((unsigned int)((c)[1])) )),c+=2) - -#define s2n(s,c) ((c[0]=(unsigned char)(((s)>> 8)&0xff), \ - c[1]=(unsigned char)(((s) )&0xff)),c+=2) - -#define n2l8(c,l) (l =((uint64_t)(*((c)++)))<<56, \ - l|=((uint64_t)(*((c)++)))<<48, \ - l|=((uint64_t)(*((c)++)))<<40, \ - l|=((uint64_t)(*((c)++)))<<32, \ - l|=((uint64_t)(*((c)++)))<<24, \ - l|=((uint64_t)(*((c)++)))<<16, \ - l|=((uint64_t)(*((c)++)))<< 8, \ - l|=((uint64_t)(*((c)++)))) - -#define l2n8(l,c) (*((c)++)=(unsigned char)(((l)>>56)&0xff), \ - *((c)++)=(unsigned char)(((l)>>48)&0xff), \ - *((c)++)=(unsigned char)(((l)>>40)&0xff), \ - *((c)++)=(unsigned char)(((l)>>32)&0xff), \ - *((c)++)=(unsigned char)(((l)>>24)&0xff), \ - *((c)++)=(unsigned char)(((l)>>16)&0xff), \ - *((c)++)=(unsigned char)(((l)>> 8)&0xff), \ - *((c)++)=(unsigned char)(((l) )&0xff)) - int o2i_SCT_signature(SCT *sct, const unsigned char **in, size_t len) { size_t siglen; -- cgit v1.1