From f328e684a274df1f820df5c5d9b685b8e6bd75d1 Mon Sep 17 00:00:00 2001 From: Holger Dengler Date: Wed, 16 Jul 2014 10:05:21 +0200 Subject: security: kconfig integration for security chapters Signed-off-by: Holger Dengler --- security/crypto/Kconfig | 18 ++++++++++++++++++ security/crypto/Makefile | 11 ++--------- 2 files changed, 20 insertions(+), 9 deletions(-) create mode 100644 security/crypto/Kconfig (limited to 'security/crypto') diff --git a/security/crypto/Kconfig b/security/crypto/Kconfig new file mode 100644 index 0000000..21c6be7 --- /dev/null +++ b/security/crypto/Kconfig @@ -0,0 +1,18 @@ +config SECURITY_CRYPTO + bool "Cryptography Basics" + default y + help + Content: + - History + - Basic Concepts + - Symetric/Asymetric Algorithms + - Modes of Operation + +config SECURITY_PKI + bool "Public Key Infrastructure" + default y + help + Content: + - Terms + - Structure + - Tools diff --git a/security/crypto/Makefile b/security/crypto/Makefile index 257d70d..a9a4b6c 100644 --- a/security/crypto/Makefile +++ b/security/crypto/Makefile @@ -1,9 +1,2 @@ -all: - for pdf in `ls -1 handout_*.tex pres_*.tex 2> /dev/null` ; do \ - TEXINPUTS=`pwd`/../..:.:..:$(TEXINPUTS) pdflatex $$pdf; \ - TEXINPUTS=`pwd`/../..:.:..:$(TEXINPUTS) pdflatex $$pdf; \ - done - -clean: - rm -f *.aux *.log *.pdf *.log *.snm *.toc *.vrb *.nav *.out - +iobj-$(CONFIG_SECURITY_CRYPTO) += pres_crypto_en.pdf +iobj-$(CONFIG_SECURITY_PKI) += pres_pki_en.pdf -- cgit v1.2.3