diff options
author | Uros Majstorovic <majstor@majstor.org> | 2022-02-02 06:30:38 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2022-02-02 06:30:38 +0100 |
commit | a4401c99c2a54ba9a964317cbff915d40d16e470 (patch) | |
tree | aeaa137eed4674f7a4d1717d08394044ff4a684e /ext | |
parent | 378d4ce7552df580e3ddd89c2faa9f8c5086d646 (diff) |
moved aes sha and blowfish to crypto
Diffstat (limited to 'ext')
-rw-r--r-- | ext/crypto/Makefile (renamed from ext/Makefile) | 2 | ||||
-rw-r--r-- | ext/crypto/aes/Makefile (renamed from ext/aes/Makefile) | 2 | ||||
-rw-r--r-- | ext/crypto/aes/aes.c (renamed from ext/aes/aes.c) | 0 | ||||
-rw-r--r-- | ext/crypto/aes/aes.h (renamed from ext/aes/aes.h) | 0 | ||||
-rw-r--r-- | ext/crypto/blowfish/Makefile (renamed from ext/blowfish/Makefile) | 2 | ||||
-rw-r--r-- | ext/crypto/blowfish/blowfish.c (renamed from ext/blowfish/blowfish.c) | 0 | ||||
-rw-r--r-- | ext/crypto/blowfish/blowfish.h (renamed from ext/blowfish/blowfish.h) | 0 | ||||
-rw-r--r-- | ext/crypto/crypto_common.mk | 1 | ||||
-rw-r--r-- | ext/crypto/crypto_obj.mk (renamed from ext/crypto_obj.mk) | 0 | ||||
-rw-r--r-- | ext/crypto/sha/Makefile (renamed from ext/sha/Makefile) | 2 | ||||
-rw-r--r-- | ext/crypto/sha/sha1.c (renamed from ext/sha/sha1.c) | 0 | ||||
-rw-r--r-- | ext/crypto/sha/sha1.h (renamed from ext/sha/sha1.h) | 0 |
12 files changed, 5 insertions, 4 deletions
diff --git a/ext/Makefile b/ext/crypto/Makefile index 1168470..2e34c43 100644 --- a/ext/Makefile +++ b/ext/crypto/Makefile @@ -1,4 +1,4 @@ -include common.mk +include crypto_common.mk include crypto_obj.mk all: diff --git a/ext/aes/Makefile b/ext/crypto/aes/Makefile index 463aed3..ac337cc 100644 --- a/ext/aes/Makefile +++ b/ext/crypto/aes/Makefile @@ -1,4 +1,4 @@ -include common.mk +include ../crypto_common.mk obj = aes.o diff --git a/ext/aes/aes.c b/ext/crypto/aes/aes.c index fc74d8d..fc74d8d 100644 --- a/ext/aes/aes.c +++ b/ext/crypto/aes/aes.c diff --git a/ext/aes/aes.h b/ext/crypto/aes/aes.h index f6dd079..f6dd079 100644 --- a/ext/aes/aes.h +++ b/ext/crypto/aes/aes.h diff --git a/ext/blowfish/Makefile b/ext/crypto/blowfish/Makefile index fff41a0..8f4b6a6 100644 --- a/ext/blowfish/Makefile +++ b/ext/crypto/blowfish/Makefile @@ -1,4 +1,4 @@ -include common.mk +include ../crypto_common.mk obj = blowfish.o diff --git a/ext/blowfish/blowfish.c b/ext/crypto/blowfish/blowfish.c index ada71d3..ada71d3 100644 --- a/ext/blowfish/blowfish.c +++ b/ext/crypto/blowfish/blowfish.c diff --git a/ext/blowfish/blowfish.h b/ext/crypto/blowfish/blowfish.h index a317812..a317812 100644 --- a/ext/blowfish/blowfish.h +++ b/ext/crypto/blowfish/blowfish.h diff --git a/ext/crypto/crypto_common.mk b/ext/crypto/crypto_common.mk new file mode 100644 index 0000000..0185271 --- /dev/null +++ b/ext/crypto/crypto_common.mk @@ -0,0 +1 @@ +-include common.mk
\ No newline at end of file diff --git a/ext/crypto_obj.mk b/ext/crypto/crypto_obj.mk index 54c7092..54c7092 100644 --- a/ext/crypto_obj.mk +++ b/ext/crypto/crypto_obj.mk diff --git a/ext/sha/Makefile b/ext/crypto/sha/Makefile index ee67f3e..a8f1d36 100644 --- a/ext/sha/Makefile +++ b/ext/crypto/sha/Makefile @@ -1,4 +1,4 @@ -include common.mk +include ../crypto_common.mk obj = sha1.o diff --git a/ext/sha/sha1.c b/ext/crypto/sha/sha1.c index 9e5ff68..9e5ff68 100644 --- a/ext/sha/sha1.c +++ b/ext/crypto/sha/sha1.c diff --git a/ext/sha/sha1.h b/ext/crypto/sha/sha1.h index 96bb008..96bb008 100644 --- a/ext/sha/sha1.h +++ b/ext/crypto/sha/sha1.h |