diff options
author | Eric Biggers <ebiggers@google.com> | 2020-11-13 22:19:16 +0100 |
---|---|---|
committer | Eric Biggers <ebiggers@google.com> | 2020-11-16 20:40:11 +0100 |
commit | 9e90f30e78572ecfc1c74c735a034c955d822ba6 (patch) | |
tree | 8c0ae5ac827947af989bd3fc195011430c38d259 /Documentation/filesystems | |
parent | fs-verity: remove filenames from file comments (diff) | |
download | linux-9e90f30e78572ecfc1c74c735a034c955d822ba6.tar.xz linux-9e90f30e78572ecfc1c74c735a034c955d822ba6.zip |
fs-verity: rename fsverity_signed_digest to fsverity_formatted_digest
The name "struct fsverity_signed_digest" is causing confusion because it
isn't actually a signed digest, but rather it's the way that the digest
is formatted in order to be signed. Rename it to
"struct fsverity_formatted_digest" to prevent this confusion.
Also update the struct's comment to clarify that it's specific to the
built-in signature verification support and isn't a requirement for all
fs-verity users.
I'll be renaming this struct in fsverity-utils too.
Acked-by: Luca Boccassi <luca.boccassi@microsoft.com>
Link: https://lore.kernel.org/r/20201113211918.71883-3-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@google.com>
Diffstat (limited to 'Documentation/filesystems')
-rw-r--r-- | Documentation/filesystems/fsverity.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/filesystems/fsverity.rst b/Documentation/filesystems/fsverity.rst index 895e9711ed88..421b75498d49 100644 --- a/Documentation/filesystems/fsverity.rst +++ b/Documentation/filesystems/fsverity.rst @@ -372,7 +372,7 @@ kernel. Specifically, it adds support for: File measurements must be signed in the following format, which is similar to the structure used by `FS_IOC_MEASURE_VERITY`_:: - struct fsverity_signed_digest { + struct fsverity_formatted_digest { char magic[8]; /* must be "FSVerity" */ __le16 digest_algorithm; __le16 digest_size; |