| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
|---|
| 1 | 2 | /* PKCS#7 crypto data parser |
|---|
| 2 | 3 | * |
|---|
| 3 | 4 | * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved. |
|---|
| 4 | 5 | * 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 | 6 | */ |
|---|
| 11 | 7 | |
|---|
| 12 | 8 | #ifndef _CRYPTO_PKCS7_H |
|---|
| 13 | 9 | #define _CRYPTO_PKCS7_H |
|---|
| 14 | 10 | |
|---|
| 15 | 11 | #include <linux/verification.h> |
|---|
| 12 | +#include <linux/hash_info.h> |
|---|
| 16 | 13 | #include <crypto/public_key.h> |
|---|
| 17 | 14 | |
|---|
| 18 | 15 | struct key; |
|---|
| .. | .. |
|---|
| 44 | 41 | extern int pkcs7_supply_detached_data(struct pkcs7_message *pkcs7, |
|---|
| 45 | 42 | const void *data, size_t datalen); |
|---|
| 46 | 43 | |
|---|
| 44 | +extern int pkcs7_get_digest(struct pkcs7_message *pkcs7, const u8 **buf, |
|---|
| 45 | + u32 *len, enum hash_algo *hash_algo); |
|---|
| 46 | + |
|---|
| 47 | 47 | #endif /* _CRYPTO_PKCS7_H */ |
|---|