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

TOMOYO Linux Cross Reference
Linux/crypto/crc64_rocksoft_generic.c

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 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-only
  2 
  3 #include <linux/crc64.h>
  4 #include <linux/module.h>
  5 #include <crypto/internal/hash.h>
  6 #include <asm/unaligned.h>
  7 
  8 static int chksum_init(struct shash_desc *desc)
  9 {
 10         u64 *crc = shash_desc_ctx(desc);
 11 
 12         *crc = 0;
 13 
 14         return 0;
 15 }
 16 
 17 static int chksum_update(struct shash_desc *desc, const u8 *data,
 18                          unsigned int length)
 19 {
 20         u64 *crc = shash_desc_ctx(desc);
 21 
 22         *crc = crc64_rocksoft_generic(*crc, data, length);
 23 
 24         return 0;
 25 }
 26 
 27 static int chksum_final(struct shash_desc *desc, u8 *out)
 28 {
 29         u64 *crc = shash_desc_ctx(desc);
 30 
 31         put_unaligned_le64(*crc, out);
 32         return 0;
 33 }
 34 
 35 static int __chksum_finup(u64 crc, const u8 *data, unsigned int len, u8 *out)
 36 {
 37         crc = crc64_rocksoft_generic(crc, data, len);
 38         put_unaligned_le64(crc, out);
 39         return 0;
 40 }
 41 
 42 static int chksum_finup(struct shash_desc *desc, const u8 *data,
 43                         unsigned int len, u8 *out)
 44 {
 45         u64 *crc = shash_desc_ctx(desc);
 46 
 47         return __chksum_finup(*crc, data, len, out);
 48 }
 49 
 50 static int chksum_digest(struct shash_desc *desc, const u8 *data,
 51                          unsigned int length, u8 *out)
 52 {
 53         return __chksum_finup(0, data, length, out);
 54 }
 55 
 56 static struct shash_alg alg = {
 57         .digestsize     =       sizeof(u64),
 58         .init           =       chksum_init,
 59         .update         =       chksum_update,
 60         .final          =       chksum_final,
 61         .finup          =       chksum_finup,
 62         .digest         =       chksum_digest,
 63         .descsize       =       sizeof(u64),
 64         .base           =       {
 65                 .cra_name               =       CRC64_ROCKSOFT_STRING,
 66                 .cra_driver_name        =       "crc64-rocksoft-generic",
 67                 .cra_priority           =       200,
 68                 .cra_blocksize          =       1,
 69                 .cra_module             =       THIS_MODULE,
 70         }
 71 };
 72 
 73 static int __init crc64_rocksoft_init(void)
 74 {
 75         return crypto_register_shash(&alg);
 76 }
 77 
 78 static void __exit crc64_rocksoft_exit(void)
 79 {
 80         crypto_unregister_shash(&alg);
 81 }
 82 
 83 module_init(crc64_rocksoft_init);
 84 module_exit(crc64_rocksoft_exit);
 85 
 86 MODULE_LICENSE("GPL");
 87 MODULE_DESCRIPTION("Rocksoft model CRC64 calculation.");
 88 MODULE_ALIAS_CRYPTO("crc64-rocksoft");
 89 MODULE_ALIAS_CRYPTO("crc64-rocksoft-generic");
 90 

~ [ 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