/** * @file OTPCalculator.c * @author Ambroz Bizjak * * @section LICENSE * * This file is part of BadVPN. * * BadVPN is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 * as published by the Free Software Foundation. * * BadVPN 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, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include #include #include int OTPCalculator_Init (OTPCalculator *calc, int num_otps, int cipher) { ASSERT(num_otps >= 0) ASSERT(BEncryption_cipher_valid(cipher)) // init arguments calc->num_otps = num_otps; calc->cipher = cipher; // remember block size calc->block_size = BEncryption_cipher_block_size(calc->cipher); // calculate number of blocks if (calc->num_otps > SIZE_MAX / sizeof(otp_t)) { goto fail0; } calc->num_blocks = bdivide_up(calc->num_otps * sizeof(otp_t), calc->block_size); // allocate buffer if (!(calc->data = BAllocArray(calc->num_blocks, calc->block_size))) { goto fail0; } // init debug object DebugObject_Init(&calc->d_obj); return 1; fail0: return 0; } void OTPCalculator_Free (OTPCalculator *calc) { // free debug object DebugObject_Free(&calc->d_obj); // free buffer BFree(calc->data); } otp_t * OTPCalculator_Generate (OTPCalculator *calc, uint8_t *key, uint8_t *iv, int shuffle) { ASSERT(shuffle == 0 || shuffle == 1) // copy IV so it can be updated uint8_t iv_work[BENCRYPTION_MAX_BLOCK_SIZE]; memcpy(iv_work, iv, calc->block_size); // create zero block uint8_t zero[BENCRYPTION_MAX_BLOCK_SIZE]; memset(zero, 0, calc->block_size); // init encryptor BEncryption encryptor; BEncryption_Init(&encryptor, BENCRYPTION_MODE_ENCRYPT, calc->cipher, key); // encrypt zero blocks for (size_t i = 0; i < calc->num_blocks; i++) { BEncryption_Encrypt(&encryptor, zero, (uint8_t *)calc->data + i * calc->block_size, calc->block_size, iv_work); } // free encryptor BEncryption_Free(&encryptor); // shuffle if requested if (shuffle) { int i = 0; while (i < calc->num_otps) { uint16_t ints[256]; BRandom_randomize((uint8_t *)ints, sizeof(ints)); for (int j = 0; j < 256 && i < calc->num_otps; j++) { int newIndex = i + (ints[j] % (calc->num_otps - i)); otp_t temp = calc->data[i]; calc->data[i] = calc->data[newIndex]; calc->data[newIndex] = temp; i++; } } } return calc->data; }