Commit 0cea8832 authored by Rob Percival's avatar Rob Percival Committed by Rich Salz
Browse files

Public API for Certificate Transparency



Reviewed-by: default avatarBen Laurie <ben@openssl.org>
Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent 186d04a5
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -50,15 +50,13 @@
  }
  my $sd1 = sourcedir("ssl","record");
  my $sd2 = sourcedir("ssl","statem");
  $unified_info{before}->{"[.crypto.ct]ct_lib.OBJ"}
      = $unified_info{before}->{"[.test]heartbeat_test.OBJ"}
  $unified_info{before}->{"[.test]heartbeat_test.OBJ"}
      = $unified_info{before}->{"[.test]ssltest.OBJ"}
      = qq(record = F\$PARSE("$sd1","A.;",,,"SYNTAX_ONLY") - "A.;"
        define record 'record'
        statem = F\$PARSE("$sd2","A.;",,,"SYNTAX_ONLY") - "A.;"
        define statem 'statem');
  $unified_info{after}->{"[.crypto.ct]ct_lib.OBJ"}
      = $unified_info{after}->{"[.test]heartbeat_test.OBJ"}
  $unified_info{after}->{"[.test]heartbeat_test.OBJ"}
      = $unified_info{after}->{"[.test]ssltest.OBJ"}
      = qq(deassign statem
        deassign record);
+0 −2
Original line number Diff line number Diff line
@@ -650,8 +650,6 @@ errors:
	      $(PERL) ../util/mkerr.pl -conf $$e \
		      -nostatic -staticloader -write *.c; \
	  done )
	( cd $(SRCDIR)/crypto/ct; \
	  $(PERL) ../../util/mkerr.pl -conf ct.ec -hprefix internal/ -write *.c )

ordinals:
	( b=`pwd`; cd $(SRCDIR); $(PERL) -I$$b util/mkdef.pl crypto update )
+0 −1
Original line number Diff line number Diff line
@@ -521,7 +521,6 @@ errors:
	$(PERL) util/ck_errf.pl -strict */*.c */*/*.c
	$(PERL) util/mkerr.pl -recurse -write
	(cd engines; $(MAKE) PERL=$(PERL) errors)
	(cd crypto/ct; $(MAKE) PERL=$(PERL) errors)

ordinals: util/libeay.num util/ssleay.num test_ordinals TABLE
util/libeay.num::
+2 −7
Original line number Diff line number Diff line
@@ -15,8 +15,8 @@ CFLAGS= $(INCLUDES) $(CFLAG) $(SHARED_CFLAG)
GENERAL=Makefile

LIB=$(TOP)/libcrypto.a
LIBSRC= ct_lib.c ct_err.c ct_oct.c ct_prn.c
LIBOBJ= ct_lib.o ct_err.o ct_oct.o ct_prn.o
LIBSRC= ct_err.c ct_oct.c ct_prn.c ct_sct.c ct_x509v3.c
LIBOBJ= ct_err.o ct_oct.o ct_prn.o ct_sct.o ct_x509v3.o

SRC= $(LIBSRC)

@@ -27,8 +27,6 @@ ALL= $(GENERAL) $(SRC) $(HEADER)
top:
	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)

test:

all:	lib

lib:	$(LIBOBJ)
@@ -39,9 +37,6 @@ lib: $(LIBOBJ)
files:
	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO

errors:
	$(PERL) $(TOP)/util/mkerr.pl -conf ct.ec -hprefix internal/ -write *.c

depend:
	$(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)

+1 −1
Original line number Diff line number Diff line
LIBS=../../libcrypto
SOURCE[../../libcrypto]= ct_lib.c ct_err.c ct_oct.c ct_prn.c
SOURCE[../../libcrypto]= ct_err.c ct_oct.c ct_prn.c ct_sct.c ct_x509v3.c
Loading