• Home
  • Raw
  • Download

Lines Matching full:encrypted

11  * fscrypt_file_open() - prepare to open a possibly-encrypted regular file
15 * Currently, an encrypted regular file can only be opened if its encryption key
16 * is available; access to the raw encrypted contents is not supported.
21 * is being opened) is encrypted, then the inode being opened uses the same
23 * in an encrypted directory tree use the same encryption policy, as a
26 * an unencrypted file in an encrypted directory.
144 * When the CASEFOLD flag is set on an encrypted directory, we must in fscrypt_prepare_setflags()
168 * fscrypt_prepare_symlink() - prepare to create a possibly-encrypted symlink
177 * encrypted symlink may be longer than the original.
180 * unencrypted, but left NULL if the symlink will be encrypted. For encrypted
197 * To calculate the size of the encrypted symlink target we need to know in fscrypt_prepare_symlink()
203 /* Not encrypted */ in fscrypt_prepare_symlink()
214 * Calculate the size of the encrypted symlink and verify it won't in fscrypt_prepare_symlink()
215 * exceed max_len. Note that for historical reasons, encrypted symlink in fscrypt_prepare_symlink()
292 * fscrypt_get_symlink() - get the target of an encrypted symlink
314 /* This is for encrypted symlinks only */ in fscrypt_get_symlink()
333 * For historical reasons, encrypted symlink targets are prefixed with in fscrypt_get_symlink()
382 * fscrypt_symlink_getattr() - set the correct st_size for encrypted symlinks
383 * @path: the path for the encrypted symlink being queried
386 * Override st_size of encrypted symlinks to be the length of the decrypted
388 * unavailable) rather than the length of the encrypted symlink target. This is