aboutsummaryrefslogtreecommitdiff
path: root/crypto/ct/ct_oct.c
diff options
context:
space:
mode:
authorRob Percival <robpercival@google.com>2016-02-29 20:25:08 +0000
committerRich Salz <rsalz@openssl.org>2016-03-01 11:59:28 -0500
commit0dfd6cf901d34b5774fa406c44fcfbe9e3ef6d5e (patch)
tree3a3cfeb521f93f8f6226558d65ed297c14147794 /crypto/ct/ct_oct.c
parente9fd74ac96c27cbee33d4b91a2caa0017c304975 (diff)
downloadopenssl-0dfd6cf901d34b5774fa406c44fcfbe9e3ef6d5e.zip
openssl-0dfd6cf901d34b5774fa406c44fcfbe9e3ef6d5e.tar.gz
openssl-0dfd6cf901d34b5774fa406c44fcfbe9e3ef6d5e.tar.bz2
Addresses review comments from richsalz
Reviewed-by: Ben Laurie <ben@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/ct/ct_oct.c')
-rw-r--r--crypto/ct/ct_oct.c24
1 files changed, 0 insertions, 24 deletions
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;