From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 608AFC05027 for ; Fri, 10 Feb 2023 03:54:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231174AbjBJDyT (ORCPT ); Thu, 9 Feb 2023 22:54:19 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45556 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229917AbjBJDyT (ORCPT ); Thu, 9 Feb 2023 22:54:19 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0F9326E9A7; Thu, 9 Feb 2023 19:54:18 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id A7C9AB82318; Fri, 10 Feb 2023 03:54:16 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E5BDEC433EF; Fri, 10 Feb 2023 03:54:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1676001255; bh=hTbI/uHdUcdMjp23oy6AQJPVhQQNne0zOy2ZW7ePXC8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=pX3C3wFr+jOY0BBYQGlrqnFp6/IpoNQwniwWedKM/no6/Mp2ZPVEKd9vQU1m1L5tM ycy2vKP53jUhV9VSdtNQjo+iaBCAIrjPuF6uJ5nwEoAGV3Jclu2FO3axtDmshFMzVr 7oHByO8K3cSbrGgR3g4IbgPt1wk54/oxexSexs8CUmp9YY4zJcmQiGakEu9wWd/Nqh TdVWB/Pzwwo1etfdY2fewNZZvH30zfTnEOh0cxLjoN9uudfIkbWeHX381T+0OrxHnO czzYY1KojObZ5P/BHFW670vXJJGbtzDcXHvM1/5QojRfu/H/9OmDZ6FE+8ZtRiCkk0 1Wu19Fq6hZy9w== Date: Fri, 10 Feb 2023 05:54:12 +0200 From: Jarkko Sakkinen To: Randy Dunlap Cc: linux-kernel@vger.kernel.org, David Howells , keyrings@vger.kernel.org, Paul Moore , James Morris , "Serge E. Hallyn" , linux-security-module@vger.kernel.org, Jonathan Corbet , linux-doc@vger.kernel.org Subject: Re: [PATCH 17/24] Documentation: security: correct spelling Message-ID: References: <20230209071400.31476-1-rdunlap@infradead.org> <20230209071400.31476-18-rdunlap@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230209071400.31476-18-rdunlap@infradead.org> Precedence: bulk List-ID: On Wed, Feb 08, 2023 at 11:13:53PM -0800, Randy Dunlap wrote: > Correct spelling problems for Documentation/security/ as reported > by codespell. > > Signed-off-by: Randy Dunlap > Cc: David Howells > Cc: Jarkko Sakkinen > Cc: keyrings@vger.kernel.org > Cc: Paul Moore > Cc: James Morris > Cc: "Serge E. Hallyn" > Cc: linux-security-module@vger.kernel.org > Cc: Jonathan Corbet > Cc: linux-doc@vger.kernel.org > Reviewed-by: David Howells > --- > Documentation/security/digsig.rst | 4 ++-- > Documentation/security/keys/core.rst | 2 +- > Documentation/security/secrets/coco.rst | 2 +- > 3 files changed, 4 insertions(+), 4 deletions(-) > > diff -- a/Documentation/security/digsig.rst b/Documentation/security/digsig.rst > --- a/Documentation/security/digsig.rst > +++ b/Documentation/security/digsig.rst > @@ -62,7 +62,7 @@ API currently includes only 1 function:: > * digsig_verify() - digital signature verification with public key > * @keyring: keyring to search key in > * @sig: digital signature > - * @sigen: length of the signature > + * @siglen: length of the signature > * @data: data > * @datalen: length of the data > * @return: 0 on success, -EINVAL otherwise > @@ -82,7 +82,7 @@ The signing and key management utilities > to generate signatures, to load keys into the kernel keyring. > Keys can be in PEM or converted to the kernel format. > When the key is added to the kernel keyring, the keyid defines the name > -of the key: 5D2B05FC633EE3E8 in the example bellow. > +of the key: 5D2B05FC633EE3E8 in the example below. > > Here is example output of the keyctl utility:: > > diff -- a/Documentation/security/keys/core.rst b/Documentation/security/keys/core.rst > --- a/Documentation/security/keys/core.rst > +++ b/Documentation/security/keys/core.rst > @@ -869,7 +869,7 @@ The keyctl syscall functions are: > > - ``char *hashname`` specifies the NUL terminated string identifying > the hash used from the kernel crypto API and applied for the KDF > - operation. The KDF implemenation complies with SP800-56A as well > + operation. The KDF implementation complies with SP800-56A as well > as with SP800-108 (the counter KDF). > > - ``char *otherinfo`` specifies the OtherInfo data as documented in > diff -- a/Documentation/security/secrets/coco.rst b/Documentation/security/secrets/coco.rst > --- a/Documentation/security/secrets/coco.rst > +++ b/Documentation/security/secrets/coco.rst > @@ -34,7 +34,7 @@ be use it for its own purposes. > > During the VM's launch, the virtual machine manager may inject a secret to that > area. In AMD SEV and SEV-ES this is performed using the > -``KVM_SEV_LAUNCH_SECRET`` command (see [sev]_). The strucutre of the injected > +``KVM_SEV_LAUNCH_SECRET`` command (see [sev]_). The structure of the injected > Guest Owner secret data should be a GUIDed table of secret values; the binary > format is described in ``drivers/virt/coco/efi_secret/efi_secret.c`` under > "Structure of the EFI secret area". Acked-by: Jarkko Sakkinen BR, Jarkko