20 lines
377 B
C
20 lines
377 B
C
|
/*
|
||
|
* fscrypt_private.h
|
||
|
*
|
||
|
* Copyright (C) 2015, Google, Inc.
|
||
|
*
|
||
|
* This contains encryption key functions.
|
||
|
*
|
||
|
* Written by Michael Halcrow, Ildar Muslukhov, and Uday Savagaonkar, 2015.
|
||
|
*/
|
||
|
|
||
|
#ifndef _FSCRYPT_PRIVATE_H
|
||
|
#define _FSCRYPT_PRIVATE_H
|
||
|
|
||
|
#include <linux/fscrypto.h>
|
||
|
|
||
|
/* keyinfo.c */
|
||
|
extern int fscrypt_get_crypt_info(struct inode *);
|
||
|
|
||
|
#endif /* _FSCRYPT_PRIVATE_H */
|