Path: blob/main/contrib/bearssl/src/symcipher/aes_ct64_enc.c
39482 views
/*1* Copyright (c) 2016 Thomas Pornin <[email protected]>2*3* Permission is hereby granted, free of charge, to any person obtaining4* a copy of this software and associated documentation files (the5* "Software"), to deal in the Software without restriction, including6* without limitation the rights to use, copy, modify, merge, publish,7* distribute, sublicense, and/or sell copies of the Software, and to8* permit persons to whom the Software is furnished to do so, subject to9* the following conditions:10*11* The above copyright notice and this permission notice shall be12* included in all copies or substantial portions of the Software.13*14* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,15* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF16* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND17* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS18* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN19* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN20* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE21* SOFTWARE.22*/2324#include "inner.h"2526static inline void27add_round_key(uint64_t *q, const uint64_t *sk)28{29q[0] ^= sk[0];30q[1] ^= sk[1];31q[2] ^= sk[2];32q[3] ^= sk[3];33q[4] ^= sk[4];34q[5] ^= sk[5];35q[6] ^= sk[6];36q[7] ^= sk[7];37}3839static inline void40shift_rows(uint64_t *q)41{42int i;4344for (i = 0; i < 8; i ++) {45uint64_t x;4647x = q[i];48q[i] = (x & (uint64_t)0x000000000000FFFF)49| ((x & (uint64_t)0x00000000FFF00000) >> 4)50| ((x & (uint64_t)0x00000000000F0000) << 12)51| ((x & (uint64_t)0x0000FF0000000000) >> 8)52| ((x & (uint64_t)0x000000FF00000000) << 8)53| ((x & (uint64_t)0xF000000000000000) >> 12)54| ((x & (uint64_t)0x0FFF000000000000) << 4);55}56}5758static inline uint64_t59rotr32(uint64_t x)60{61return (x << 32) | (x >> 32);62}6364static inline void65mix_columns(uint64_t *q)66{67uint64_t q0, q1, q2, q3, q4, q5, q6, q7;68uint64_t r0, r1, r2, r3, r4, r5, r6, r7;6970q0 = q[0];71q1 = q[1];72q2 = q[2];73q3 = q[3];74q4 = q[4];75q5 = q[5];76q6 = q[6];77q7 = q[7];78r0 = (q0 >> 16) | (q0 << 48);79r1 = (q1 >> 16) | (q1 << 48);80r2 = (q2 >> 16) | (q2 << 48);81r3 = (q3 >> 16) | (q3 << 48);82r4 = (q4 >> 16) | (q4 << 48);83r5 = (q5 >> 16) | (q5 << 48);84r6 = (q6 >> 16) | (q6 << 48);85r7 = (q7 >> 16) | (q7 << 48);8687q[0] = q7 ^ r7 ^ r0 ^ rotr32(q0 ^ r0);88q[1] = q0 ^ r0 ^ q7 ^ r7 ^ r1 ^ rotr32(q1 ^ r1);89q[2] = q1 ^ r1 ^ r2 ^ rotr32(q2 ^ r2);90q[3] = q2 ^ r2 ^ q7 ^ r7 ^ r3 ^ rotr32(q3 ^ r3);91q[4] = q3 ^ r3 ^ q7 ^ r7 ^ r4 ^ rotr32(q4 ^ r4);92q[5] = q4 ^ r4 ^ r5 ^ rotr32(q5 ^ r5);93q[6] = q5 ^ r5 ^ r6 ^ rotr32(q6 ^ r6);94q[7] = q6 ^ r6 ^ r7 ^ rotr32(q7 ^ r7);95}9697/* see inner.h */98void99br_aes_ct64_bitslice_encrypt(unsigned num_rounds,100const uint64_t *skey, uint64_t *q)101{102unsigned u;103104add_round_key(q, skey);105for (u = 1; u < num_rounds; u ++) {106br_aes_ct64_bitslice_Sbox(q);107shift_rows(q);108mix_columns(q);109add_round_key(q, skey + (u << 3));110}111br_aes_ct64_bitslice_Sbox(q);112shift_rows(q);113add_round_key(q, skey + (num_rounds << 3));114}115116117