// SPDX-License-Identifier: GPL-2.0-or-later /* * eCryptfs: Linux filesystem encryption layer * Functions only useful for debugging. * * Copyright (C) 2006 International Business Machines Corp. * Author(s): Michael A. Halcrow <[email protected]> */ #include "ecryptfs_kernel.h" /* * ecryptfs_dump_auth_tok - debug function to print auth toks * * This function will print the contents of an ecryptfs authentication * token. */ void ecryptfs_dump_auth_tok(struct ecryptfs_auth_tok *auth_tok) { … } /** * ecryptfs_dump_hex - debug hex printer * @data: string of bytes to be printed * @bytes: number of bytes to print * * Dump hexadecimal representation of char array */ void ecryptfs_dump_hex(char *data, int bytes) { … }