aboutsummaryrefslogtreecommitdiffstats
path: root/include/crypto
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2014-07-01 11:40:20 -0400
committerDavid Howells <dhowells@redhat.com>2014-07-08 08:50:15 -0400
commit08815b62d700e4fbeb72a01986ad051c3dd84a15 (patch)
tree9a3df820a9716348fa947986d2310d50e14f9964 /include/crypto
parent8c76d79393ccc9b89d9af402d79a49a9cd43c5aa (diff)
PKCS#7: Find intersection between PKCS#7 message and known, trusted keys
Find the intersection between the X.509 certificate chain contained in a PKCS#7 message and a set of keys that we already know and trust. Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Vivek Goyal <vgoyal@redhat.com> Reviewed-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'include/crypto')
-rw-r--r--include/crypto/pkcs7.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/crypto/pkcs7.h b/include/crypto/pkcs7.h
index 8ba0f3810d67..691c79172a26 100644
--- a/include/crypto/pkcs7.h
+++ b/include/crypto/pkcs7.h
@@ -9,6 +9,7 @@
9 * 2 of the Licence, or (at your option) any later version. 9 * 2 of the Licence, or (at your option) any later version.
10 */ 10 */
11 11
12struct key;
12struct pkcs7_message; 13struct pkcs7_message;
13 14
14/* 15/*
@@ -23,6 +24,13 @@ extern int pkcs7_get_content_data(const struct pkcs7_message *pkcs7,
23 bool want_wrapper); 24 bool want_wrapper);
24 25
25/* 26/*
27 * pkcs7_trust.c
28 */
29extern int pkcs7_validate_trust(struct pkcs7_message *pkcs7,
30 struct key *trust_keyring,
31 bool *_trusted);
32
33/*
26 * pkcs7_verify.c 34 * pkcs7_verify.c
27 */ 35 */
28extern int pkcs7_verify(struct pkcs7_message *pkcs7); 36extern int pkcs7_verify(struct pkcs7_message *pkcs7);