Path: blob/main/contrib/bearssl/src/symcipher/aes_ct_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(uint32_t *q, const uint32_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(uint32_t *q)41{42int i;4344for (i = 0; i < 8; i ++) {45uint32_t x;4647x = q[i];48q[i] = (x & 0x000000FF)49| ((x & 0x0000FC00) >> 2) | ((x & 0x00000300) << 6)50| ((x & 0x00F00000) >> 4) | ((x & 0x000F0000) << 4)51| ((x & 0xC0000000) >> 6) | ((x & 0x3F000000) << 2);52}53}5455static inline uint32_t56rotr16(uint32_t x)57{58return (x << 16) | (x >> 16);59}6061static inline void62mix_columns(uint32_t *q)63{64uint32_t q0, q1, q2, q3, q4, q5, q6, q7;65uint32_t r0, r1, r2, r3, r4, r5, r6, r7;6667q0 = q[0];68q1 = q[1];69q2 = q[2];70q3 = q[3];71q4 = q[4];72q5 = q[5];73q6 = q[6];74q7 = q[7];75r0 = (q0 >> 8) | (q0 << 24);76r1 = (q1 >> 8) | (q1 << 24);77r2 = (q2 >> 8) | (q2 << 24);78r3 = (q3 >> 8) | (q3 << 24);79r4 = (q4 >> 8) | (q4 << 24);80r5 = (q5 >> 8) | (q5 << 24);81r6 = (q6 >> 8) | (q6 << 24);82r7 = (q7 >> 8) | (q7 << 24);8384q[0] = q7 ^ r7 ^ r0 ^ rotr16(q0 ^ r0);85q[1] = q0 ^ r0 ^ q7 ^ r7 ^ r1 ^ rotr16(q1 ^ r1);86q[2] = q1 ^ r1 ^ r2 ^ rotr16(q2 ^ r2);87q[3] = q2 ^ r2 ^ q7 ^ r7 ^ r3 ^ rotr16(q3 ^ r3);88q[4] = q3 ^ r3 ^ q7 ^ r7 ^ r4 ^ rotr16(q4 ^ r4);89q[5] = q4 ^ r4 ^ r5 ^ rotr16(q5 ^ r5);90q[6] = q5 ^ r5 ^ r6 ^ rotr16(q6 ^ r6);91q[7] = q6 ^ r6 ^ r7 ^ rotr16(q7 ^ r7);92}9394/* see inner.h */95void96br_aes_ct_bitslice_encrypt(unsigned num_rounds,97const uint32_t *skey, uint32_t *q)98{99unsigned u;100101add_round_key(q, skey);102for (u = 1; u < num_rounds; u ++) {103br_aes_ct_bitslice_Sbox(q);104shift_rows(q);105mix_columns(q);106add_round_key(q, skey + (u << 3));107}108br_aes_ct_bitslice_Sbox(q);109shift_rows(q);110add_round_key(q, skey + (num_rounds << 3));111}112113114