mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-09-21 21:44:37 -04:00
use ChaCha8-based CSPRNG
This commit is contained in:
parent
2b7c9362bb
commit
c41e659383
5 changed files with 235 additions and 7 deletions
5
Makefile
5
Makefile
|
@ -2,14 +2,15 @@ CPPFLAGS := -D_GNU_SOURCE
|
|||
CFLAGS := -std=c11 -Wall -Wextra -O2 -flto -fPIC -fvisibility=hidden -pedantic
|
||||
LDFLAGS := -Wl,--as-needed
|
||||
LDLIBS := -lpthread
|
||||
OBJECTS := malloc.o random.o util.o
|
||||
OBJECTS := chacha.o malloc.o random.o util.o
|
||||
|
||||
hardened_malloc.so: $(OBJECTS)
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -shared $^ $(LDLIBS) -o $@
|
||||
|
||||
malloc.o: malloc.c malloc.h random.h util.h
|
||||
random.o: random.c random.h util.h
|
||||
random.o: random.c random.h chacha.h util.h
|
||||
util.o: util.c util.h
|
||||
chacha.o: chacha.c chacha.h
|
||||
|
||||
clean:
|
||||
rm -f hardened_malloc.so $(OBJECTS)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue