mirror of
https://github.com/urbit/shrub.git
synced 2024-11-24 13:06:09 +03:00
fix/create ed25519 build, muffle warnings
This commit is contained in:
parent
a36a9011c8
commit
70d39b9bfc
1
outside/ed25519/.gitignore
vendored
Normal file
1
outside/ed25519/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
ed25519.a
|
23
outside/ed25519/Makefile
Normal file
23
outside/ed25519/Makefile
Normal file
@ -0,0 +1,23 @@
|
||||
# A simple makefile.
|
||||
#
|
||||
CFLAGS= -O2 -g -Wall
|
||||
|
||||
.c.o:
|
||||
$(CC) -c $(CFLAGS) -o $@ $<
|
||||
|
||||
OFILES=\
|
||||
src/add_scalar.o \
|
||||
src/fe.o \
|
||||
src/ge.o \
|
||||
src/key_exchange.o \
|
||||
src/keypair.o \
|
||||
src/sc.o \
|
||||
src/seed.o \
|
||||
src/sha512.o \
|
||||
src/sign.o \
|
||||
src/verify.o
|
||||
|
||||
all: ed25519.a($(OFILES))
|
||||
|
||||
clean:
|
||||
-rm $(OFILES) ed25519.a
|
@ -268,8 +268,8 @@ int sha512(const unsigned char *message, size_t message_len, unsigned char *out)
|
||||
{
|
||||
sha512_context ctx;
|
||||
int ret;
|
||||
if (ret = sha512_init(&ctx)) return ret;
|
||||
if (ret = sha512_update(&ctx, message, message_len)) return ret;
|
||||
if (ret = sha512_final(&ctx, out)) return ret;
|
||||
if ((ret = sha512_init(&ctx))) return ret;
|
||||
if ((ret = sha512_update(&ctx, message, message_len))) return ret;
|
||||
if ((ret = sha512_final(&ctx, out))) return ret;
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user