29 lines
789 B
C
29 lines
789 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* PGP crypto data parser internal definitions
|
|
*
|
|
* Copyright (C) 2011 Red Hat, Inc. All Rights Reserved.
|
|
* Written by David Howells (dhowells@redhat.com)
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public Licence
|
|
* as published by the Free Software Foundation; either version
|
|
* 2 of the Licence, or (at your option) any later version.
|
|
*/
|
|
|
|
#ifdef CONFIG_PGP_LIBRARY
|
|
|
|
#include <linux/pgp.h>
|
|
|
|
#define kenter(FMT, ...) \
|
|
pr_devel("==> %s("FMT")\n", __func__, ##__VA_ARGS__)
|
|
#define kleave(FMT, ...) \
|
|
pr_devel("<== %s()"FMT"\n", __func__, ##__VA_ARGS__)
|
|
|
|
/*
|
|
* pgp_library.c
|
|
*/
|
|
extern const char *pgp_to_public_key_algo[PGP_PUBKEY__LAST];
|
|
|
|
#endif /* CONFIG_PGP_LIBRARY */
|
|
|