internal-sliscp-light.h 5.6 KB
Newer Older
Rhys Weatherley committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
/*
 * Copyright (C) 2020 Southern Storm Software, Pty Ltd.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */

#ifndef LW_INTERNAL_SLISCP_LIGHT_H
#define LW_INTERNAL_SLISCP_LIGHT_H

/**
 * \file internal-sliscp-light.h
 * \brief sLiSCP-light permutation
 *
 * There are three variants of sLiSCP-light in use in the NIST submissions:
 *
 * \li sLiSCP-light-256 with a 256-bit block size, used in SPIX and SpoC.
 * \li sLiSCP-light-192 with a 192-bit block size, used in SpoC.
 * \li sLiSCP-light-320 with a 320-bit block size, used in ACE.
 *
 * References: https://uwaterloo.ca/communications-security-lab/lwc/ace,
 * https://uwaterloo.ca/communications-security-lab/lwc/spix,
 * https://uwaterloo.ca/communications-security-lab/lwc/spoc
 */

#include "internal-util.h"

#ifdef __cplusplus
extern "C" {
#endif

/**
 * \brief Size of the state for sLiSCP-light-256.
 */
#define SLISCP_LIGHT256_STATE_SIZE 32

/**
 * \brief Size of the state for sLiSCP-light-192.
 */
#define SLISCP_LIGHT192_STATE_SIZE 24

/**
 * \brief Size of the state for sLiSCP-light-320.
 */
#define SLISCP_LIGHT320_STATE_SIZE 40

/**
 * \brief Performs the sLiSCP-light permutation on a 256-bit block.
 *
 * \param block Points to the block to be permuted.
 * \param rounds Number of rounds to be performed, usually 9 or 18.
 *
 * The bytes of the block are assumed to be rearranged to match the
 * requirements of the SPIX cipher.  SPIX places the rate bytes at
 * positions 8, 9, 10, 11, 24, 25, 26, and 27.
 *
 * This function assumes that bytes 24-27 have been pre-swapped with
 * bytes 12-15 so that the rate portion of the state is contiguous.
 *
 * The sliscp_light256_swap_spix() function can be used to switch
 * between the canonical order and the pre-swapped order.
 *
 * \sa sliscp_light256_swap_spix()
 */
void sliscp_light256_permute_spix(unsigned char block[32], unsigned rounds);

/**
 * \brief Swaps rate bytes in a sLiSCP-light 256-bit block for SPIX.
 *
 * \param block Points to the block to be rate-swapped.
 *
 * \sa sliscp_light256_permute_spix()
 */
void sliscp_light256_swap_spix(unsigned char block[32]);

/**
 * \brief Performs the sLiSCP-light permutation on a 256-bit block.
 *
 * \param block Points to the block to be permuted.
 *
 * The bytes of the block are assumed to be rearranged to match the
 * requirements of the SpoC-128 cipher.  SpoC-128 interleaves the
 * rate bytes and the mask bytes.  This version assumes that the
 * rate and mask are in contiguous bytes of the state.
 *
 * SpoC-128 absorbs bytes using the mask bytes of the state at offsets
 * 8, 9, 10, 11, 12, 13, 14, 15, 24, 25, 26, 27, 28, 29, 30, and 31.
 * It squeezes bytes using the rate bytes of the state at offsets
 * 0, 1, 2, 3, 4, 5, 6, 7, 16, 17, 18, 19, 20, 21, 22, and 23.
 *
 * This function assumes that bytes 8-15 have been pre-swapped with 16-23
 * so that the rate and mask portions of the state are contiguous.
 *
 * The sliscp_light256_swap_spoc() function can be used to switch
 * between the canonical order and the pre-swapped order.
 *
 * \sa sliscp_light256_swap_spoc()
 */
void sliscp_light256_permute_spoc(unsigned char block[32]);

/**
 * \brief Swaps rate bytes in a sLiSCP-light 256-bit block for SpoC-128.
 *
 * \param block Points to the block to be rate-swapped.
 *
 * \sa sliscp_light256_permute_spoc()
 */
void sliscp_light256_swap_spoc(unsigned char block[32]);

/**
 * \brief Performs the sLiSCP-light permutation on a 192-bit block.
 *
 * \param block Points to the block to be permuted.
 */
void sliscp_light192_permute(unsigned char block[24]);

/**
 * \brief Performs the sLiSCP-light permutation on a 320-bit block.
 *
 * \param block Points to the block to be permuted.
 *
 * The ACE specification refers to this permutation as "ACE" but that
 * can be confused with the name of the AEAD mode so we call this
 * permutation "sLiSCP-light-320" instead.
 *
 * ACE absorbs and squeezes data at the rate bytes 0, 1, 2, 3, 16, 17, 18, 19.
 * Efficiency can suffer because of the discontinuity in rate byte positions.
 *
 * To counteract this, we assume that the input to the permutation has been
 * pre-swapped: bytes 4, 5, 6, 7 are swapped with bytes 16, 17, 18, 19 so
 * that the rate is contiguous at the start of the state.
 *
 * The sliscp_light320_swap() function can be used to switch between the
 * canonical order and the pre-swapped order.
 *
 * \sa sliscp_light320_swap()
 */
void sliscp_light320_permute(unsigned char block[40]);

/**
 * \brief Swaps rate bytes in a sLiSCP-light 320-bit block.
 *
 * \param block Points to the block to be rate-swapped.
 *
 * \sa sliscp_light320_permute()
 */
void sliscp_light320_swap(unsigned char block[40]);

#ifdef __cplusplus
}
#endif

#endif