~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/crypto/kdf_sp800108.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/crypto/kdf_sp800108.h (Architecture ppc) and /include/crypto/kdf_sp800108.h (Architecture m68k)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 /* SPDX-License-Identifier: GPL-2.0 */
  2                                                     2 
  3 /*                                                  3 /*
  4  * Copyright (C) 2021, Stephan Mueller <smuell      4  * Copyright (C) 2021, Stephan Mueller <smueller@chronox.de>
  5  */                                                 5  */
  6                                                     6 
  7 #ifndef _CRYPTO_KDF108_H                            7 #ifndef _CRYPTO_KDF108_H
  8 #define _CRYPTO_KDF108_H                            8 #define _CRYPTO_KDF108_H
  9                                                     9 
 10 #include <crypto/hash.h>                           10 #include <crypto/hash.h>
 11 #include <linux/uio.h>                             11 #include <linux/uio.h>
 12                                                    12 
 13 /**                                                13 /**
 14  * Counter KDF generate operation according to     14  * Counter KDF generate operation according to SP800-108 section 5.1
 15  * as well as SP800-56A section 5.8.1 (Single-     15  * as well as SP800-56A section 5.8.1 (Single-step KDF).
 16  *                                                 16  *
 17  * @kmd Keyed message digest whose key was set     17  * @kmd Keyed message digest whose key was set with crypto_kdf108_setkey or
 18  *      unkeyed message digest                     18  *      unkeyed message digest
 19  * @info optional context and application spec     19  * @info optional context and application specific information - this may be
 20  *       NULL                                      20  *       NULL
 21  * @info_vec number of optional context/applic     21  * @info_vec number of optional context/application specific information entries
 22  * @dst destination buffer that the caller alr     22  * @dst destination buffer that the caller already allocated
 23  * @dlen length of the destination buffer - th     23  * @dlen length of the destination buffer - the KDF derives that amount of
 24  *       bytes.                                    24  *       bytes.
 25  *                                                 25  *
 26  * To comply with SP800-108, the caller must p     26  * To comply with SP800-108, the caller must provide Label || 0x00 || Context
 27  * in the info parameter.                          27  * in the info parameter.
 28  *                                                 28  *
 29  * @return 0 on success, < 0 on error              29  * @return 0 on success, < 0 on error
 30  */                                                30  */
 31 int crypto_kdf108_ctr_generate(struct crypto_s     31 int crypto_kdf108_ctr_generate(struct crypto_shash *kmd,
 32                                const struct kv     32                                const struct kvec *info, unsigned int info_nvec,
 33                                u8 *dst, unsign     33                                u8 *dst, unsigned int dlen);
 34                                                    34 
 35 /**                                                35 /**
 36  * Counter KDF setkey operation                    36  * Counter KDF setkey operation
 37  *                                                 37  *
 38  * @kmd Keyed message digest allocated by the      38  * @kmd Keyed message digest allocated by the caller. The key should not have
 39  *      been set.                                  39  *      been set.
 40  * @key Seed key to be used to initialize the      40  * @key Seed key to be used to initialize the keyed message digest context.
 41  * @keylen This length of the key buffer.          41  * @keylen This length of the key buffer.
 42  * @ikm The SP800-108 KDF does not support IKM     42  * @ikm The SP800-108 KDF does not support IKM - this parameter must be NULL
 43  * @ikmlen This parameter must be 0.               43  * @ikmlen This parameter must be 0.
 44  *                                                 44  *
 45  * According to SP800-108 section 7.2, the see     45  * According to SP800-108 section 7.2, the seed key must be at least as large as
 46  * the message digest size of the used keyed m     46  * the message digest size of the used keyed message digest. This limitation
 47  * is enforced by the implementation.              47  * is enforced by the implementation.
 48  *                                                 48  *
 49  * SP800-108 allows the use of either a HMAC o     49  * SP800-108 allows the use of either a HMAC or a hash primitive. When
 50  * the caller intends to use a hash primitive,     50  * the caller intends to use a hash primitive, the call to
 51  * crypto_kdf108_setkey is not required and th     51  * crypto_kdf108_setkey is not required and the key derivation operation can
 52  * immediately performed using crypto_kdf108_c     52  * immediately performed using crypto_kdf108_ctr_generate after allocating
 53  * a handle.                                       53  * a handle.
 54  *                                                 54  *
 55  * @return 0 on success, < 0 on error              55  * @return 0 on success, < 0 on error
 56  */                                                56  */
 57 int crypto_kdf108_setkey(struct crypto_shash *     57 int crypto_kdf108_setkey(struct crypto_shash *kmd,
 58                          const u8 *key, size_t     58                          const u8 *key, size_t keylen,
 59                          const u8 *ikm, size_t     59                          const u8 *ikm, size_t ikmlen);
 60                                                    60 
 61 #endif /* _CRYPTO_KDF108_H */                      61 #endif /* _CRYPTO_KDF108_H */
 62                                                    62 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php