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

TOMOYO Linux Cross Reference
Linux/arch/riscv/crypto/sm4-riscv64-zvksed-zvkb.S

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/riscv/crypto/sm4-riscv64-zvksed-zvkb.S (Version linux-6.12-rc7) and /arch/m68k/crypto/sm4-riscv64-zvksed-zvkb.S (Version linux-5.8.18)


  1 /* SPDX-License-Identifier: Apache-2.0 OR BSD-    
  2 //                                                
  3 // This file is dual-licensed, meaning that yo    
  4 // choice of either of the following two licen    
  5 //                                                
  6 // Copyright 2023 The OpenSSL Project Authors.    
  7 //                                                
  8 // Licensed under the Apache License 2.0 (the     
  9 // a copy in the file LICENSE in the source di    
 10 // https://www.openssl.org/source/license.html    
 11 //                                                
 12 // or                                             
 13 //                                                
 14 // Copyright (c) 2023, Christoph Müllner <chri    
 15 // Copyright (c) 2023, Jerry Shih <jerry.shih@s    
 16 // Copyright 2024 Google LLC                      
 17 // All rights reserved.                           
 18 //                                                
 19 // Redistribution and use in source and binary    
 20 // modification, are permitted provided that t    
 21 // are met:                                       
 22 // 1. Redistributions of source code must reta    
 23 //    notice, this list of conditions and the     
 24 // 2. Redistributions in binary form must repr    
 25 //    notice, this list of conditions and the     
 26 //    documentation and/or other materials pro    
 27 //                                                
 28 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT     
 29 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTI    
 30 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCH    
 31 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO     
 32 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIR    
 33 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGE    
 34 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS    
 35 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION)    
 36 // THEORY OF LIABILITY, WHETHER IN CONTRACT, S    
 37 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING    
 38 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE PO    
 39                                                   
 40 // The generated code of this file depends on     
 41 // - RV64I                                        
 42 // - RISC-V Vector ('V') with VLEN >= 128         
 43 // - RISC-V Vector SM4 Block Cipher extension     
 44 // - RISC-V Vector Cryptography Bit-manipulati    
 45                                                   
 46 #include <linux/linkage.h>                        
 47                                                   
 48 .text                                             
 49 .option arch, +zvksed, +zvkb                      
 50                                                   
 51 // void sm4_expandkey_zksed_zvkb(const u8 user    
 52 //                               u32 rkey_dec[    
 53 SYM_FUNC_START(sm4_expandkey_zvksed_zvkb)         
 54         vsetivli        zero, 4, e32, m1, ta,     
 55                                                   
 56         // Load the user key.                     
 57         vle32.v         v1, (a0)                  
 58         vrev8.v         v1, v1                    
 59                                                   
 60         // XOR the user key with the family ke    
 61         la              t0, FAMILY_KEY            
 62         vle32.v         v2, (t0)                  
 63         vxor.vv         v1, v1, v2                
 64                                                   
 65         // Compute the round keys.  Store them    
 66         // and in reverse order in rkey_dec.      
 67         addi            a2, a2, 31*4              
 68         li              t0, -4                    
 69         .set            i, 0                      
 70 .rept 8                                           
 71         vsm4k.vi        v1, v1, i                 
 72         vse32.v         v1, (a1)        // Sto    
 73         vsse32.v        v1, (a2), t0    // Sto    
 74 .if i < 7                                         
 75         addi            a1, a1, 16                
 76         addi            a2, a2, -16               
 77 .endif                                            
 78         .set            i, i + 1                  
 79 .endr                                             
 80                                                   
 81         ret                                       
 82 SYM_FUNC_END(sm4_expandkey_zvksed_zvkb)           
 83                                                   
 84 // void sm4_crypt_zvksed_zvkb(const u32 rkey[3    
 85 SYM_FUNC_START(sm4_crypt_zvksed_zvkb)             
 86         vsetivli        zero, 4, e32, m1, ta,     
 87                                                   
 88         // Load the input data.                   
 89         vle32.v         v1, (a1)                  
 90         vrev8.v         v1, v1                    
 91                                                   
 92         // Do the 32 rounds of SM4, 4 at a tim    
 93         .set            i, 0                      
 94 .rept 8                                           
 95         vle32.v         v2, (a0)                  
 96         vsm4r.vs        v1, v2                    
 97 .if i < 7                                         
 98         addi            a0, a0, 16                
 99 .endif                                            
100         .set            i, i + 1                  
101 .endr                                             
102                                                   
103         // Store the output data (in reverse e    
104         vrev8.v         v1, v1                    
105         li              t0, -4                    
106         addi            a2, a2, 12                
107         vsse32.v        v1, (a2), t0              
108                                                   
109         ret                                       
110 SYM_FUNC_END(sm4_crypt_zvksed_zvkb)               
111                                                   
112 .section ".rodata"                                
113 .p2align 2                                        
114 .type FAMILY_KEY, @object                         
115 FAMILY_KEY:                                       
116         .word 0xA3B1BAC6, 0x56AA3350, 0x677D91    
117 .size FAMILY_KEY, . - FAMILY_KEY                  
                                                      

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