diff options
author | David Howells <dhowells@redhat.com> | 2016-04-06 18:14:26 +0300 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2016-04-12 00:42:55 +0300 |
commit | cfb664ff2b71fbbdc438b8e6db2a1412440432a2 (patch) | |
tree | 8a57e6e577376339a77c61bfaa83fdce5252319e /crypto/asymmetric_keys/Makefile | |
parent | 5f7f5c81e59be5ce262c5b7d0ede9565a2558d80 (diff) | |
download | linux-cfb664ff2b71fbbdc438b8e6db2a1412440432a2.tar.xz |
X.509: Move the trust validation code out to its own file
Move the X.509 trust validation code out to its own file so that it can be
generalised.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'crypto/asymmetric_keys/Makefile')
-rw-r--r-- | crypto/asymmetric_keys/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/crypto/asymmetric_keys/Makefile b/crypto/asymmetric_keys/Makefile index f90486256f01..6516855bec18 100644 --- a/crypto/asymmetric_keys/Makefile +++ b/crypto/asymmetric_keys/Makefile @@ -4,7 +4,10 @@ obj-$(CONFIG_ASYMMETRIC_KEY_TYPE) += asymmetric_keys.o -asymmetric_keys-y := asymmetric_type.o signature.o +asymmetric_keys-y := \ + asymmetric_type.o \ + restrict.o \ + signature.o obj-$(CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE) += public_key.o |