diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-11-22 11:03:34 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-11-22 11:03:34 +0100 |
commit | 2b7dd9295829f479feb26b2462fb83a4c6ca30a6 (patch) | |
tree | 87caa2e80efab060a107fdea3b1b4e17d1ce7d5d /Makefile | |
parent | add option to print * for each char (diff) | |
download | libpassphrase-2b7dd9295829f479feb26b2462fb83a4c6ca30a6.tar.gz libpassphrase-2b7dd9295829f479feb26b2462fb83a4c6ca30a6.tar.bz2 libpassphrase-2b7dd9295829f479feb26b2462fb83a4c6ca30a6.tar.xz |
do not use realloc by default, it is bad security
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3,8 +3,9 @@ LIB = /lib INCLUDE = /include OPTIONS = -# PASSPHRASE_ECHO: Do not hide the passphrase -# PASSPHRASE_STAR: Use '*' for each character instead of no echo +# PASSPHRASE_ECHO: Do not hide the passphrase +# PASSPHRASE_STAR: Use '*' for each character instead of no echo +# PASSPHRASE_REALLOC: Soften security by using `realloc` OPTIMISE = -Os CPPFLAGS = $(foreach D, $(OPTIONS), -D'$(D)=1') |