blob: c9408c75f68057632c6d136f10058a8535d8fc5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _USR_IMGCRYPT_H
#define _USR_IMGCRYPT_H
/** @file
*
* Image encryption management
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#include <ipxe/image.h>
extern int imgdecrypt ( struct image *image, struct image *envelope,
const char *name );
#endif /* _USR_IMGCRYPT_H */
|