David Howells | 2e3fadb | 2014-07-01 16:40:19 +0100 | [diff] [blame] | 1 | /* PKCS#7 crypto data parser |
| 2 | * |
| 3 | * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved. |
| 4 | * Written by David Howells (dhowells@redhat.com) |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public Licence |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the Licence, or (at your option) any later version. |
| 10 | */ |
| 11 | |
David Howells | 99db443 | 2015-08-05 15:22:27 +0100 | [diff] [blame] | 12 | #ifndef _CRYPTO_PKCS7_H |
| 13 | #define _CRYPTO_PKCS7_H |
| 14 | |
David Howells | e68503b | 2016-04-06 16:14:24 +0100 | [diff] [blame] | 15 | #include <linux/verification.h> |
David Howells | 99db443 | 2015-08-05 15:22:27 +0100 | [diff] [blame] | 16 | #include <crypto/public_key.h> |
| 17 | |
David Howells | 08815b6 | 2014-07-01 16:40:20 +0100 | [diff] [blame] | 18 | struct key; |
David Howells | 2e3fadb | 2014-07-01 16:40:19 +0100 | [diff] [blame] | 19 | struct pkcs7_message; |
| 20 | |
| 21 | /* |
| 22 | * pkcs7_parser.c |
| 23 | */ |
| 24 | extern struct pkcs7_message *pkcs7_parse_message(const void *data, |
| 25 | size_t datalen); |
| 26 | extern void pkcs7_free_message(struct pkcs7_message *pkcs7); |
| 27 | |
| 28 | extern int pkcs7_get_content_data(const struct pkcs7_message *pkcs7, |
| 29 | const void **_data, size_t *_datalen, |
David Howells | e68503b | 2016-04-06 16:14:24 +0100 | [diff] [blame] | 30 | size_t *_headerlen); |
David Howells | a473035 | 2014-07-01 16:40:19 +0100 | [diff] [blame] | 31 | |
| 32 | /* |
David Howells | 08815b6 | 2014-07-01 16:40:20 +0100 | [diff] [blame] | 33 | * pkcs7_trust.c |
| 34 | */ |
| 35 | extern int pkcs7_validate_trust(struct pkcs7_message *pkcs7, |
David Howells | bda850c | 2016-04-06 16:14:24 +0100 | [diff] [blame] | 36 | struct key *trust_keyring); |
David Howells | 08815b6 | 2014-07-01 16:40:20 +0100 | [diff] [blame] | 37 | |
| 38 | /* |
David Howells | a473035 | 2014-07-01 16:40:19 +0100 | [diff] [blame] | 39 | * pkcs7_verify.c |
| 40 | */ |
David Howells | 99db443 | 2015-08-05 15:22:27 +0100 | [diff] [blame] | 41 | extern int pkcs7_verify(struct pkcs7_message *pkcs7, |
| 42 | enum key_being_used_for usage); |
David Howells | 4ebdb76f | 2015-07-20 21:16:26 +0100 | [diff] [blame] | 43 | |
| 44 | extern int pkcs7_supply_detached_data(struct pkcs7_message *pkcs7, |
| 45 | const void *data, size_t datalen); |
David Howells | 99db443 | 2015-08-05 15:22:27 +0100 | [diff] [blame] | 46 | |
| 47 | #endif /* _CRYPTO_PKCS7_H */ |