Skip to content
Snippets Groups Projects
Commit 1b1c9e73 authored by Charles Wright's avatar Charles Wright
Browse files

Renamed monocypher.(c|h) to minimonocyper.(c|h) to make it clear that these...

Renamed monocypher.(c|h) to minimonocyper.(c|h) to make it clear that these are not the original versions
parent fe3399de
No related branches found
No related tags found
No related merge requests found
default: demo
monocypher.o: monocypher.c monocypher.h
cc -c monocypher.c
minimonocypher.o: minimonocypher.c minimonocypher.h
cc -c minimonocypher.c
bsspeke.o: bsspeke.c bsspeke.h monocypher.h
bsspeke.o: bsspeke.c bsspeke.h minimonocypher.h
cc -c bsspeke.c
demo.o: demo.c bsspeke.h
cc -c demo.c
demo: demo.o bsspeke.o monocypher.o
cc -o demo demo.o bsspeke.o monocypher.o
demo: demo.o bsspeke.o minimonocypher.o
cc -o demo demo.o bsspeke.o minimonocypher.o
clean:
rm -f demo bsspeke.o monocypher.o
rm -f demo bsspeke.o minimonocypher.o
......@@ -22,7 +22,7 @@
#include <stdlib.h>
#include <string.h>
#include "monocypher.h"
#include "minimonocypher.h"
#include "bsspeke.h"
typedef enum {
......
......@@ -51,7 +51,7 @@
// with this software. If not, see
// <https://creativecommons.org/publicdomain/zero/1.0/>
#include "monocypher.h"
#include "minimonocypher.h"
/////////////////
/// Utilities ///
......
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment