Skip to content

Commit

Permalink
Add a curve25519 library for the pair-verify process.
Browse files Browse the repository at this point in the history
  • Loading branch information
juhovh committed Jul 18, 2018
1 parent 4c1e906 commit a47b896
Show file tree
Hide file tree
Showing 6 changed files with 1,322 additions and 2 deletions.
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,6 @@ AC_CONFIG_FILES(
[src/lib/Makefile]
[src/lib/alac/Makefile]
[src/lib/crypto/Makefile]
[src/lib/curve25519/Makefile]
)
AC_OUTPUT
4 changes: 2 additions & 2 deletions src/lib/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SUBDIRS = crypto alac
SUBDIRS = crypto alac curve25519

AM_CPPFLAGS = -I$(top_srcdir)/include/shairplay

Expand All @@ -7,7 +7,7 @@ libshairplay_la_SOURCES = base64.c base64.h digest.c digest.h dnssd.c dnssdint.h
libshairplay_la_CPPFLAGS = $(AM_CPPFLAGS)

# This library depends on 3rd party libraries
libshairplay_la_LIBADD = crypto/libcrypto.la alac/libalac.la
libshairplay_la_LIBADD = crypto/libcrypto.la alac/libalac.la curve25519/libcurve25519.la
libshairplay_la_LDFLAGS = -no-undefined -version-info 0:0:0

### Update -version-info above with the following rules
Expand Down
2 changes: 2 additions & 0 deletions src/lib/curve25519/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
noinst_LTLIBRARIES = libcurve25519.la
libcurve25519_la_SOURCES = curve25519-donna.c
Loading

0 comments on commit a47b896

Please sign in to comment.