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

TOMOYO Linux Cross Reference
Linux/arch/arm/crypto/curve25519-glue.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ 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.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/arm/crypto/curve25519-glue.c (Version linux-6.12-rc7) and /arch/ppc/crypto/curve25519-glue.c (Version linux-5.11.22)


  1 // SPDX-License-Identifier: GPL-2.0 OR MIT          1 
  2 /*                                                
  3  * Copyright (C) 2015-2019 Jason A. Donenfeld     
  4  *                                                
  5  * Based on public domain code from Daniel J.     
  6  * began from SUPERCOP's curve25519/neon2/scal    
  7  * manually reworked for use in kernel space.     
  8  */                                               
  9                                                   
 10 #include <asm/hwcap.h>                            
 11 #include <asm/neon.h>                             
 12 #include <asm/simd.h>                             
 13 #include <crypto/internal/kpp.h>                  
 14 #include <crypto/internal/simd.h>                 
 15 #include <linux/types.h>                          
 16 #include <linux/module.h>                         
 17 #include <linux/init.h>                           
 18 #include <linux/jump_label.h>                     
 19 #include <linux/scatterlist.h>                    
 20 #include <crypto/curve25519.h>                    
 21                                                   
 22 asmlinkage void curve25519_neon(u8 mypublic[CU    
 23                                 const u8 secre    
 24                                 const u8 basep    
 25                                                   
 26 static __ro_after_init DEFINE_STATIC_KEY_FALSE    
 27                                                   
 28 void curve25519_arch(u8 out[CURVE25519_KEY_SIZ    
 29                      const u8 scalar[CURVE2551    
 30                      const u8 point[CURVE25519    
 31 {                                                 
 32         if (static_branch_likely(&have_neon) &    
 33                 kernel_neon_begin();              
 34                 curve25519_neon(out, scalar, p    
 35                 kernel_neon_end();                
 36         } else {                                  
 37                 curve25519_generic(out, scalar    
 38         }                                         
 39 }                                                 
 40 EXPORT_SYMBOL(curve25519_arch);                   
 41                                                   
 42 void curve25519_base_arch(u8 pub[CURVE25519_KE    
 43                           const u8 secret[CURV    
 44 {                                                 
 45         return curve25519_arch(pub, secret, cu    
 46 }                                                 
 47 EXPORT_SYMBOL(curve25519_base_arch);              
 48                                                   
 49 static int curve25519_set_secret(struct crypto    
 50                                  unsigned int     
 51 {                                                 
 52         u8 *secret = kpp_tfm_ctx(tfm);            
 53                                                   
 54         if (!len)                                 
 55                 curve25519_generate_secret(sec    
 56         else if (len == CURVE25519_KEY_SIZE &&    
 57                  crypto_memneq(buf, curve25519    
 58                 memcpy(secret, buf, CURVE25519    
 59         else                                      
 60                 return -EINVAL;                   
 61         return 0;                                 
 62 }                                                 
 63                                                   
 64 static int curve25519_compute_value(struct kpp    
 65 {                                                 
 66         struct crypto_kpp *tfm = crypto_kpp_re    
 67         const u8 *secret = kpp_tfm_ctx(tfm);      
 68         u8 public_key[CURVE25519_KEY_SIZE];       
 69         u8 buf[CURVE25519_KEY_SIZE];              
 70         int copied, nbytes;                       
 71         u8 const *bp;                             
 72                                                   
 73         if (req->src) {                           
 74                 copied = sg_copy_to_buffer(req    
 75                                            sg_    
 76                                                   
 77                                            pub    
 78                 if (copied != CURVE25519_KEY_S    
 79                         return -EINVAL;           
 80                 bp = public_key;                  
 81         } else {                                  
 82                 bp = curve25519_base_point;       
 83         }                                         
 84                                                   
 85         curve25519_arch(buf, secret, bp);         
 86                                                   
 87         /* might want less than we've got */      
 88         nbytes = min_t(size_t, CURVE25519_KEY_    
 89         copied = sg_copy_from_buffer(req->dst,    
 90                                                   
 91                                      buf, nbyt    
 92         if (copied != nbytes)                     
 93                 return -EINVAL;                   
 94         return 0;                                 
 95 }                                                 
 96                                                   
 97 static unsigned int curve25519_max_size(struct    
 98 {                                                 
 99         return CURVE25519_KEY_SIZE;               
100 }                                                 
101                                                   
102 static struct kpp_alg curve25519_alg = {          
103         .base.cra_name          = "curve25519"    
104         .base.cra_driver_name   = "curve25519-    
105         .base.cra_priority      = 200,            
106         .base.cra_module        = THIS_MODULE,    
107         .base.cra_ctxsize       = CURVE25519_K    
108                                                   
109         .set_secret             = curve25519_s    
110         .generate_public_key    = curve25519_c    
111         .compute_shared_secret  = curve25519_c    
112         .max_size               = curve25519_m    
113 };                                                
114                                                   
115 static int __init arm_curve25519_init(void)       
116 {                                                 
117         if (elf_hwcap & HWCAP_NEON) {             
118                 static_branch_enable(&have_neo    
119                 return IS_REACHABLE(CONFIG_CRY    
120                         crypto_register_kpp(&c    
121         }                                         
122         return 0;                                 
123 }                                                 
124                                                   
125 static void __exit arm_curve25519_exit(void)      
126 {                                                 
127         if (IS_REACHABLE(CONFIG_CRYPTO_KPP) &&    
128                 crypto_unregister_kpp(&curve25    
129 }                                                 
130                                                   
131 module_init(arm_curve25519_init);                 
132 module_exit(arm_curve25519_exit);                 
133                                                   
134 MODULE_ALIAS_CRYPTO("curve25519");                
135 MODULE_ALIAS_CRYPTO("curve25519-neon");           
136 MODULE_DESCRIPTION("Public key crypto: Curve25    
137 MODULE_LICENSE("GPL v2");                         
138                                                   

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