1 Star 0 Fork 0

ttsu00/nettle

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
drbg-ctr-aes256.c 2.58 KB
一键复制 编辑 原始数据 按行查看 历史
/* drbg-ctr-aes256.c
Copyright (C) 2023 Simon Josefsson
This file is part of GNU Nettle.
GNU Nettle is free software: you can redistribute it and/or
modify it under the terms of either:
* the GNU Lesser General Public License as published by the Free
Software Foundation; either version 3 of the License, or (at your
option) any later version.
or
* the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your
option) any later version.
or both in parallel, as here.
GNU Nettle 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 copies of the GNU General Public License and
the GNU Lesser General Public License along with this program. If
not, see http://www.gnu.org/licenses/.
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include "drbg-ctr.h"
#include <string.h>
#include "macros.h"
#include "memxor.h"
#include "block-internal.h"
static void
drbg_ctr_aes256_output (const struct aes256_ctx *key, union nettle_block16 *V,
size_t n, uint8_t *dst)
{
for (; n >= AES_BLOCK_SIZE; n -= AES_BLOCK_SIZE, dst += AES_BLOCK_SIZE)
{
INCREMENT(AES_BLOCK_SIZE, V->b);
aes256_encrypt (key, AES_BLOCK_SIZE, dst, V->b);
}
if (n > 0)
{
union nettle_block16 block;
INCREMENT(AES_BLOCK_SIZE, V->b);
aes256_encrypt (key, AES_BLOCK_SIZE, block.b, V->b);
memcpy (dst, block.b, n);
}
}
/* provided_data is either NULL or a pointer to
DRBG_CTR_AES256_SEED_SIZE (= 48) bytes. */
static void
drbg_ctr_aes256_update (struct aes256_ctx *key,
union nettle_block16 *V, const uint8_t *provided_data)
{
union nettle_block16 tmp[3];
drbg_ctr_aes256_output (key, V, DRBG_CTR_AES256_SEED_SIZE, tmp[0].b);
if (provided_data)
memxor (tmp[0].b, provided_data, DRBG_CTR_AES256_SEED_SIZE);
aes256_set_encrypt_key (key, tmp[0].b);
block16_set (V, &tmp[2]);
}
void
drbg_ctr_aes256_init (struct drbg_ctr_aes256_ctx *ctx, uint8_t *seed_material)
{
static const uint8_t zero_key[AES256_KEY_SIZE] = {0};
aes256_set_encrypt_key (&ctx->key, zero_key);
block16_zero (&ctx->V);
drbg_ctr_aes256_update (&ctx->key, &ctx->V, seed_material);
}
void
drbg_ctr_aes256_random (struct drbg_ctr_aes256_ctx *ctx,
size_t n, uint8_t *dst)
{
drbg_ctr_aes256_output (&ctx->key, &ctx->V, n, dst);
drbg_ctr_aes256_update (&ctx->key, &ctx->V, NULL);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ttsu00/nettle.git
[email protected]:ttsu00/nettle.git
ttsu00
nettle
nettle
master

搜索帮助