/////////////////////////////////////////////////////////////////////////////// // sparkle384s_v7m.asm: Size-optimized ARMv7-M implementation of SPARKLE384. // // This file is part of the SPARKLE submission to NIST's LW Crypto Project. // // Version 1.1.2 (2020-10-30), see for updates. // // Authors: The SPARKLE Group (C. Beierle, A. Biryukov, L. Cardoso dos // // Santos, J. Groszschaedl, L. Perrin, A. Udovenko, V. Velichkov, Q. Wang). // // License: GPLv3 (see LICENSE file), other licenses available upon request. // // Copyright (C) 2019-2020 University of Luxembourg . // // ------------------------------------------------------------------------- // // This program is free software: you can redistribute it and/or modify it // // under the terms of the GNU General Public License as published by the // // Free Software Foundation, either version 3 of the License, or (at your // // option) any later version. This program is distributed in the hope that // // it will be useful, but WITHOUT ANY WARRANTY/ without even the implied // // warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. You should have received a // // copy of the GNU General Public License along with this program. If not, // // see . // /////////////////////////////////////////////////////////////////////////////// .syntax unified .thumb .arch armv7-m .eabi_attribute Tag_ABI_align_preserved, 1 .section .text .balign 4 .global sparkle384_arm /////////////////////////////////////////////////////////////////////////////// //////////////////////// REGISTER NAMES AND CONSTANTS ///////////////////////// /////////////////////////////////////////////////////////////////////////////// // register sptr holds the start address of array 'state' sptr .req r0 // register cptr holds the start address of array 'rcon' cptr .req r1 // register cnt holds the step counter (for loop termination) cnt .req r0 // register step holds the number of steps (parameter 'steps') step .req r1 // registers c0w to c5w hold round constants from array 'rcon' c0w .req r0 c1w .req r0 c2w .req r0 c3w .req r0 c4w .req r0 c5w .req r1 // registers tmpx, tmpy hold temporary values tmpx .req r0 tmpy .req r1 // registers x0w to y5w hold 12 words from array 'state' x0w .req r2 y0w .req r3 x1w .req r4 y1w .req r5 x2w .req r6 y2w .req r7 x3w .req r8 y3w .req r9 x4w .req r10 y4w .req r11 x5w .req r12 y5w .req lr /////////////////////////////////////////////////////////////////////////////// //////////////////////////// MACROS FOR SPARKLE384 //////////////////////////// /////////////////////////////////////////////////////////////////////////////// .macro PROLOGUE_384 push {r4-r12,lr} ldm sptr, {x0w-x5w,y5w} push {sptr,step} .endm .macro EPILOGUE_384 pop.w {sptr,step} stm sptr, {x0w-x5w,y5w} pop {r4-r12,pc} .endm .macro ADD_STEP_CNT_384 ldr.w cptr, =RCON eor y1w, y1w, cnt and c0w, cnt, #7 ldr c0w, [cptr, c0w, lsl #2] eor y0w, y0w, c0w .endm .macro ARX_BOX xi:req, yi:req, ci:req add \xi, \xi, \yi, ror #31 eor \yi, \yi, \xi, ror #24 eor \xi, \xi, \ci add \xi, \xi, \yi, ror #17 eor \yi, \yi, \xi, ror #17 eors \xi, \xi, \ci adds \xi, \xi, \yi eor \yi, \yi, \xi, ror #31 eor \xi, \xi, \ci add \xi, \xi, \yi, ror #24 eor \yi, \yi, \xi, ror #16 eor \xi, \xi, \ci .endm .macro LL_TMPX xi:req, xj:req, xk:req eor tmpx, \xi, \xj eor tmpx, tmpx, \xk eor tmpx, tmpx, tmpx, lsl #16 .endm .macro LL_TMPY yi:req, yj:req, yk:req eor tmpy, \yi, \yj eor tmpy, tmpy, \yk eor tmpy, tmpy, tmpy, lsl #16 .endm .macro ARXBOX_LAYER_384 // ARX-box computations for the three left-side branches (i.e. x[0]-y[2]). ldr c0w, [cptr], #4 ARX_BOX x0w, y0w, c0w ldr c1w, [cptr], #4 ARX_BOX x1w, y1w, c1w ldr c2w, [cptr], #4 ARX_BOX x2w, y2w, c2w // ARX-box computations for the three right-side branches (i.e. x[3]-y[5]). ldr c3w, [cptr], #4 ARX_BOX x3w, y3w, c3w ldm.w cptr, {c4w,c5w} ARX_BOX x4w, y4w, c4w ARX_BOX x5w, y5w, c5w .endm .macro LINEAR_LAYER_384 // First part of Feistel round: tmpx and tmpy are computed and XORED to the // y-words and x-words of the right-side branches (i.e. to y[3], y[4], y[5] // and to x[3], x[4], x[5]). Note that y[5] and x[5] are stored in register // tmpx and tmpy (and not in register y5w and x5w) to reduce the execution // time of the subsequent branch permutation. LL_TMPX x0w, x1w, x2w eor y3w, y3w, tmpx, ror #16 eor y4w, y4w, tmpx, ror #16 eor tmpx, y5w, tmpx, ror #16 LL_TMPY y0w, y1w, y2w eor x3w, x3w, tmpy, ror #16 eor x4w, x4w, tmpy, ror #16 eor tmpy, x5w, tmpy, ror #16 // Branch permutation: 1-branch left-rotation of the right-side branches // along with a swap of the left and right branches (via register writes). // Also combined with the branch permutation is the second Feistel part, // in which the left-side branches are XORed with the result of the first // Feistel part. mov.w y5w, y2w eor y2w, y3w, y0w mov.w y3w, y0w eor y0w, y4w, y1w mov.w y4w, y1w eor y1w, tmpx, y5w mov.w x5w, x2w eor x2w, x3w, x0w mov.w x3w, x0w eor x0w, x4w, x1w mov.w x4w, x1w eor x1w, tmpy, x5w .endm /////////////////////////////////////////////////////////////////////////////// ////////////////// SPARKLE384 PERMUTATION (BRANCH-UNROLLED) /////////////////// /////////////////////////////////////////////////////////////////////////////// // Function prototype: // ------------------- // void sparkle384_arm(uint32_t *state, int steps) // // Parameters: // ----------- // state: pointer to an uint32_t-array containing the 12 state words // steps: number of steps // // Return value: // ------------- // None .type sparkle384_arm, %function .func sparkle384_arm sparkle384_arm: PROLOGUE_384 // push callee-saved registers and load state movs cnt, #0 // initialize step-counter .Lloop_384: // start of loop push.w {cnt,step} // push step-counter and 'steps' to free registers ADD_STEP_CNT_384 // macro to add step-counter to state ARXBOX_LAYER_384 // macro for the ARXBOX layer LINEAR_LAYER_384 // macro for the linear layer pop {cnt,step} // restore step-counter and 'steps' from stack adds cnt, #1 // increment step-counter teq cnt, step // test whether step-counter equals 'steps' bne .Lloop_384 // if not then branch to start of loop EPILOGUE_384 // store state and pop callee-saved registers .endfunc .size sparkle384_arm, .-sparkle384_arm /////////////////////////////////////////////////////////////////////////////// /////////////////////////// SPARKLE ROUND CONSTANTS /////////////////////////// /////////////////////////////////////////////////////////////////////////////// // This implementation places the round constants in the .data segment, which // means they are loaded from RAM during the computation of the ARX-boxes. It // would also be possible to place them in the .rodata segment (by replacing // the ".section .data" directive below by ".section .rodata") so that they are // loaded from flash, which reduces the RAM consumption by 32 bytes, but may // increase the execution time on devices with a high number of flash wait // states. .section .data .balign 4 .type RCON, %object .size RCON, 32 RCON: .word 0xB7E15162, 0xBF715880, 0x38B4DA56, 0x324E7738 .word 0xBB1185EB, 0x4F7C7B57, 0xCFBFA1C8, 0xC2B3293D .end