2011-11-27 15:46:59 +01:00
|
|
|
/*
|
|
|
|
* CTR_DRBG implementation based on AES-256 (NIST SP 800-90)
|
|
|
|
*
|
2015-07-27 11:11:48 +02:00
|
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2011-11-27 15:46:59 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-11-27 15:46:59 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-11-27 15:46:59 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2011-11-27 15:46:59 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2011-11-27 15:46:59 +01:00
|
|
|
*/
|
|
|
|
/*
|
2018-02-10 10:11:41 +01:00
|
|
|
* The NIST SP 800-90 DRBGs are described in the following publication.
|
2011-11-27 15:46:59 +01:00
|
|
|
*
|
|
|
|
* http://csrc.nist.gov/publications/nistpubs/800-90/SP800-90revised_March2007.pdf
|
|
|
|
*/
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
2015-04-08 12:49:31 +02:00
|
|
|
#include MBEDTLS_CONFIG_FILE
|
2014-04-29 12:39:06 +02:00
|
|
|
#endif
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_CTR_DRBG_C)
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/ctr_drbg.h"
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-02-06 14:43:58 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_FS_IO)
|
2011-12-05 14:23:51 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SELF_TEST)
|
|
|
|
#if defined(MBEDTLS_PLATFORM_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/platform.h"
|
2014-02-01 22:50:26 +01:00
|
|
|
#else
|
2015-02-06 14:43:58 +01:00
|
|
|
#include <stdio.h>
|
2015-04-08 12:49:31 +02:00
|
|
|
#define mbedtls_printf printf
|
|
|
|
#endif /* MBEDTLS_PLATFORM_C */
|
|
|
|
#endif /* MBEDTLS_SELF_TEST */
|
2014-02-01 22:50:26 +01:00
|
|
|
|
2014-06-18 16:21:25 +02:00
|
|
|
/* Implementation that should never be optimized out by the compiler */
|
2015-04-08 12:49:31 +02:00
|
|
|
static void mbedtls_zeroize( void *v, size_t n ) {
|
2014-06-18 16:21:25 +02:00
|
|
|
volatile unsigned char *p = v; while( n-- ) *p++ = 0;
|
|
|
|
}
|
|
|
|
|
2015-04-28 22:38:08 +02:00
|
|
|
/*
|
|
|
|
* CTR_DRBG context initialization
|
|
|
|
*/
|
|
|
|
void mbedtls_ctr_drbg_init( mbedtls_ctr_drbg_context *ctx )
|
|
|
|
{
|
|
|
|
memset( ctx, 0, sizeof( mbedtls_ctr_drbg_context ) );
|
2015-05-07 13:50:31 +02:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
|
|
|
mbedtls_mutex_init( &ctx->mutex );
|
|
|
|
#endif
|
2015-04-28 22:38:08 +02:00
|
|
|
}
|
|
|
|
|
2011-12-10 22:42:49 +01:00
|
|
|
/*
|
2016-05-11 00:47:30 +02:00
|
|
|
* Non-public function wrapped by mbedtls_ctr_drbg_seed(). Necessary to allow
|
|
|
|
* NIST tests to succeed (which require known length fixed entropy)
|
2011-12-10 22:42:49 +01:00
|
|
|
*/
|
2015-04-28 22:38:08 +02:00
|
|
|
int mbedtls_ctr_drbg_seed_entropy_len(
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ctr_drbg_context *ctx,
|
2011-11-27 15:46:59 +01:00
|
|
|
int (*f_entropy)(void *, unsigned char *, size_t),
|
|
|
|
void *p_entropy,
|
2011-12-03 12:29:32 +01:00
|
|
|
const unsigned char *custom,
|
2011-12-10 22:42:49 +01:00
|
|
|
size_t len,
|
|
|
|
size_t entropy_len )
|
2011-11-27 15:46:59 +01:00
|
|
|
{
|
|
|
|
int ret;
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char key[MBEDTLS_CTR_DRBG_KEYSIZE];
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
memset( key, 0, MBEDTLS_CTR_DRBG_KEYSIZE );
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_init( &ctx->aes_ctx );
|
2014-06-18 11:12:03 +02:00
|
|
|
|
2011-11-27 15:46:59 +01:00
|
|
|
ctx->f_entropy = f_entropy;
|
|
|
|
ctx->p_entropy = p_entropy;
|
|
|
|
|
2011-12-10 22:42:49 +01:00
|
|
|
ctx->entropy_len = entropy_len;
|
2015-04-08 12:49:31 +02:00
|
|
|
ctx->reseed_interval = MBEDTLS_CTR_DRBG_RESEED_INTERVAL;
|
2011-11-27 15:46:59 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize with an empty key
|
|
|
|
*/
|
2017-06-26 12:43:34 +02:00
|
|
|
if( ( ret = mbedtls_aes_setkey_enc( &ctx->aes_ctx, key, MBEDTLS_CTR_DRBG_KEYBITS ) ) != 0 )
|
|
|
|
{
|
|
|
|
return( ret );
|
|
|
|
}
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_ctr_drbg_reseed( ctx, custom, len ) ) != 0 )
|
2017-06-26 12:43:34 +02:00
|
|
|
{
|
2011-11-27 15:46:59 +01:00
|
|
|
return( ret );
|
2017-06-26 12:43:34 +02:00
|
|
|
}
|
2011-11-27 15:46:59 +01:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2015-04-28 22:38:08 +02:00
|
|
|
int mbedtls_ctr_drbg_seed( mbedtls_ctr_drbg_context *ctx,
|
2011-12-10 22:42:49 +01:00
|
|
|
int (*f_entropy)(void *, unsigned char *, size_t),
|
|
|
|
void *p_entropy,
|
|
|
|
const unsigned char *custom,
|
|
|
|
size_t len )
|
|
|
|
{
|
2015-04-28 22:38:08 +02:00
|
|
|
return( mbedtls_ctr_drbg_seed_entropy_len( ctx, f_entropy, p_entropy, custom, len,
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_CTR_DRBG_ENTROPY_LEN ) );
|
2011-12-10 22:42:49 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ctr_drbg_free( mbedtls_ctr_drbg_context *ctx )
|
2014-06-18 16:21:25 +02:00
|
|
|
{
|
|
|
|
if( ctx == NULL )
|
|
|
|
return;
|
|
|
|
|
2015-05-07 13:50:31 +02:00
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
|
|
|
mbedtls_mutex_free( &ctx->mutex );
|
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_free( &ctx->aes_ctx );
|
|
|
|
mbedtls_zeroize( ctx, sizeof( mbedtls_ctr_drbg_context ) );
|
2014-06-18 16:21:25 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ctr_drbg_set_prediction_resistance( mbedtls_ctr_drbg_context *ctx, int resistance )
|
2011-11-27 15:46:59 +01:00
|
|
|
{
|
|
|
|
ctx->prediction_resistance = resistance;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ctr_drbg_set_entropy_len( mbedtls_ctr_drbg_context *ctx, size_t len )
|
2011-11-27 15:46:59 +01:00
|
|
|
{
|
|
|
|
ctx->entropy_len = len;
|
|
|
|
}
|
2013-06-25 16:25:17 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ctr_drbg_set_reseed_interval( mbedtls_ctr_drbg_context *ctx, int interval )
|
2011-11-27 15:46:59 +01:00
|
|
|
{
|
|
|
|
ctx->reseed_interval = interval;
|
|
|
|
}
|
2013-06-25 16:25:17 +02:00
|
|
|
|
|
|
|
static int block_cipher_df( unsigned char *output,
|
|
|
|
const unsigned char *data, size_t data_len )
|
2011-11-27 15:46:59 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char buf[MBEDTLS_CTR_DRBG_MAX_SEED_INPUT + MBEDTLS_CTR_DRBG_BLOCKSIZE + 16];
|
|
|
|
unsigned char tmp[MBEDTLS_CTR_DRBG_SEEDLEN];
|
|
|
|
unsigned char key[MBEDTLS_CTR_DRBG_KEYSIZE];
|
|
|
|
unsigned char chain[MBEDTLS_CTR_DRBG_BLOCKSIZE];
|
2014-01-20 10:27:13 +01:00
|
|
|
unsigned char *p, *iv;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_context aes_ctx;
|
2017-06-26 12:43:34 +02:00
|
|
|
int ret = 0;
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2013-10-11 18:58:55 +02:00
|
|
|
int i, j;
|
|
|
|
size_t buf_len, use_len;
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( data_len > MBEDTLS_CTR_DRBG_MAX_SEED_INPUT )
|
|
|
|
return( MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG );
|
2014-11-25 17:41:50 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
memset( buf, 0, MBEDTLS_CTR_DRBG_MAX_SEED_INPUT + MBEDTLS_CTR_DRBG_BLOCKSIZE + 16 );
|
|
|
|
mbedtls_aes_init( &aes_ctx );
|
2011-11-27 15:46:59 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Construct IV (16 bytes) and S in buffer
|
|
|
|
* IV = Counter (in 32-bits) padded to 16 with zeroes
|
|
|
|
* S = Length input string (in 32-bits) || Length of output (in 32-bits) ||
|
|
|
|
* data || 0x80
|
|
|
|
* (Total is padded to a multiple of 16-bytes with zeroes)
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
p = buf + MBEDTLS_CTR_DRBG_BLOCKSIZE;
|
2011-11-29 11:50:51 +01:00
|
|
|
*p++ = ( data_len >> 24 ) & 0xff;
|
|
|
|
*p++ = ( data_len >> 16 ) & 0xff;
|
|
|
|
*p++ = ( data_len >> 8 ) & 0xff;
|
|
|
|
*p++ = ( data_len ) & 0xff;
|
|
|
|
p += 3;
|
2015-04-08 12:49:31 +02:00
|
|
|
*p++ = MBEDTLS_CTR_DRBG_SEEDLEN;
|
2011-11-29 11:50:51 +01:00
|
|
|
memcpy( p, data, data_len );
|
|
|
|
p[data_len] = 0x80;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
buf_len = MBEDTLS_CTR_DRBG_BLOCKSIZE + 8 + data_len + 1;
|
2011-11-29 11:50:51 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
for( i = 0; i < MBEDTLS_CTR_DRBG_KEYSIZE; i++ )
|
2011-11-27 15:46:59 +01:00
|
|
|
key[i] = i;
|
|
|
|
|
2017-06-26 12:43:34 +02:00
|
|
|
if( ( ret = mbedtls_aes_setkey_enc( &aes_ctx, key, MBEDTLS_CTR_DRBG_KEYBITS ) ) != 0 )
|
|
|
|
{
|
|
|
|
goto exit;
|
|
|
|
}
|
2011-11-27 15:46:59 +01:00
|
|
|
|
|
|
|
/*
|
2015-04-08 12:49:31 +02:00
|
|
|
* Reduce data to MBEDTLS_CTR_DRBG_SEEDLEN bytes of data
|
2011-11-27 15:46:59 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
for( j = 0; j < MBEDTLS_CTR_DRBG_SEEDLEN; j += MBEDTLS_CTR_DRBG_BLOCKSIZE )
|
2011-11-27 15:46:59 +01:00
|
|
|
{
|
|
|
|
p = buf;
|
2015-04-08 12:49:31 +02:00
|
|
|
memset( chain, 0, MBEDTLS_CTR_DRBG_BLOCKSIZE );
|
2011-11-27 15:46:59 +01:00
|
|
|
use_len = buf_len;
|
|
|
|
|
|
|
|
while( use_len > 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
for( i = 0; i < MBEDTLS_CTR_DRBG_BLOCKSIZE; i++ )
|
2011-11-27 15:46:59 +01:00
|
|
|
chain[i] ^= p[i];
|
2015-04-08 12:49:31 +02:00
|
|
|
p += MBEDTLS_CTR_DRBG_BLOCKSIZE;
|
|
|
|
use_len -= ( use_len >= MBEDTLS_CTR_DRBG_BLOCKSIZE ) ?
|
|
|
|
MBEDTLS_CTR_DRBG_BLOCKSIZE : use_len;
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2017-06-26 12:43:34 +02:00
|
|
|
if( ( ret = mbedtls_aes_crypt_ecb( &aes_ctx, MBEDTLS_AES_ENCRYPT, chain, chain ) ) != 0 )
|
|
|
|
{
|
|
|
|
goto exit;
|
|
|
|
}
|
2011-11-27 15:46:59 +01:00
|
|
|
}
|
2013-10-11 18:58:55 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
memcpy( tmp + j, chain, MBEDTLS_CTR_DRBG_BLOCKSIZE );
|
2011-11-27 15:46:59 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Update IV
|
|
|
|
*/
|
|
|
|
buf[3]++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Do final encryption with reduced data
|
|
|
|
*/
|
2017-06-26 12:43:34 +02:00
|
|
|
if( ( ret = mbedtls_aes_setkey_enc( &aes_ctx, tmp, MBEDTLS_CTR_DRBG_KEYBITS ) ) != 0 )
|
|
|
|
{
|
|
|
|
goto exit;
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
iv = tmp + MBEDTLS_CTR_DRBG_KEYSIZE;
|
2011-11-27 15:46:59 +01:00
|
|
|
p = output;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
for( j = 0; j < MBEDTLS_CTR_DRBG_SEEDLEN; j += MBEDTLS_CTR_DRBG_BLOCKSIZE )
|
2011-11-27 15:46:59 +01:00
|
|
|
{
|
2017-06-26 12:43:34 +02:00
|
|
|
if( ( ret = mbedtls_aes_crypt_ecb( &aes_ctx, MBEDTLS_AES_ENCRYPT, iv, iv ) ) != 0 )
|
|
|
|
{
|
|
|
|
goto exit;
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
memcpy( p, iv, MBEDTLS_CTR_DRBG_BLOCKSIZE );
|
|
|
|
p += MBEDTLS_CTR_DRBG_BLOCKSIZE;
|
2011-11-27 15:46:59 +01:00
|
|
|
}
|
2017-06-26 12:43:34 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_free( &aes_ctx );
|
2017-06-26 12:43:34 +02:00
|
|
|
/*
|
|
|
|
* tidy up the stack
|
|
|
|
*/
|
|
|
|
mbedtls_zeroize( buf, sizeof( buf ) );
|
|
|
|
mbedtls_zeroize( tmp, sizeof( tmp ) );
|
|
|
|
mbedtls_zeroize( key, sizeof( key ) );
|
|
|
|
mbedtls_zeroize( chain, sizeof( chain ) );
|
|
|
|
if( 0 != ret )
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* wipe partial seed from memory
|
|
|
|
*/
|
|
|
|
mbedtls_zeroize( output, MBEDTLS_CTR_DRBG_SEEDLEN );
|
|
|
|
}
|
2014-06-18 11:12:03 +02:00
|
|
|
|
2017-06-26 12:43:34 +02:00
|
|
|
return( ret );
|
2011-11-27 15:46:59 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
static int ctr_drbg_update_internal( mbedtls_ctr_drbg_context *ctx,
|
|
|
|
const unsigned char data[MBEDTLS_CTR_DRBG_SEEDLEN] )
|
2011-12-03 12:29:32 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char tmp[MBEDTLS_CTR_DRBG_SEEDLEN];
|
2011-12-03 12:29:32 +01:00
|
|
|
unsigned char *p = tmp;
|
2012-04-18 16:16:09 +02:00
|
|
|
int i, j;
|
2017-06-26 12:43:34 +02:00
|
|
|
int ret = 0;
|
2011-12-03 12:29:32 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
memset( tmp, 0, MBEDTLS_CTR_DRBG_SEEDLEN );
|
2011-12-03 12:29:32 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
for( j = 0; j < MBEDTLS_CTR_DRBG_SEEDLEN; j += MBEDTLS_CTR_DRBG_BLOCKSIZE )
|
2011-12-03 12:29:32 +01:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Increase counter
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
for( i = MBEDTLS_CTR_DRBG_BLOCKSIZE; i > 0; i-- )
|
2012-04-18 16:16:09 +02:00
|
|
|
if( ++ctx->counter[i - 1] != 0 )
|
|
|
|
break;
|
2011-12-03 12:29:32 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Crypt counter block
|
|
|
|
*/
|
2017-06-26 12:43:34 +02:00
|
|
|
if( ( ret = mbedtls_aes_crypt_ecb( &ctx->aes_ctx, MBEDTLS_AES_ENCRYPT, ctx->counter, p ) ) != 0 )
|
|
|
|
{
|
|
|
|
return( ret );
|
|
|
|
}
|
2011-12-03 12:29:32 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
p += MBEDTLS_CTR_DRBG_BLOCKSIZE;
|
2011-12-03 12:29:32 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
for( i = 0; i < MBEDTLS_CTR_DRBG_SEEDLEN; i++ )
|
2011-12-03 12:29:32 +01:00
|
|
|
tmp[i] ^= data[i];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update key and counter
|
|
|
|
*/
|
2017-06-26 12:43:34 +02:00
|
|
|
if( ( ret = mbedtls_aes_setkey_enc( &ctx->aes_ctx, tmp, MBEDTLS_CTR_DRBG_KEYBITS ) ) != 0 )
|
|
|
|
{
|
|
|
|
return( ret );
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
memcpy( ctx->counter, tmp + MBEDTLS_CTR_DRBG_KEYSIZE, MBEDTLS_CTR_DRBG_BLOCKSIZE );
|
2011-12-03 12:29:32 +01:00
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ctr_drbg_update( mbedtls_ctr_drbg_context *ctx,
|
2011-12-03 12:29:32 +01:00
|
|
|
const unsigned char *additional, size_t add_len )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char add_input[MBEDTLS_CTR_DRBG_SEEDLEN];
|
2011-12-03 12:29:32 +01:00
|
|
|
|
|
|
|
if( add_len > 0 )
|
|
|
|
{
|
2014-11-25 17:41:50 +01:00
|
|
|
/* MAX_INPUT would be more logical here, but we have to match
|
|
|
|
* block_cipher_df()'s limits since we can't propagate errors */
|
2015-04-08 12:49:31 +02:00
|
|
|
if( add_len > MBEDTLS_CTR_DRBG_MAX_SEED_INPUT )
|
|
|
|
add_len = MBEDTLS_CTR_DRBG_MAX_SEED_INPUT;
|
2014-11-25 17:41:50 +01:00
|
|
|
|
2011-12-03 12:29:32 +01:00
|
|
|
block_cipher_df( add_input, additional, add_len );
|
|
|
|
ctr_drbg_update_internal( ctx, add_input );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ctr_drbg_reseed( mbedtls_ctr_drbg_context *ctx,
|
2011-12-03 12:29:32 +01:00
|
|
|
const unsigned char *additional, size_t len )
|
2011-11-27 15:46:59 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char seed[MBEDTLS_CTR_DRBG_MAX_SEED_INPUT];
|
2011-11-27 15:46:59 +01:00
|
|
|
size_t seedlen = 0;
|
2017-06-26 12:43:34 +02:00
|
|
|
int ret;
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2017-01-18 00:04:22 +01:00
|
|
|
if( ctx->entropy_len > MBEDTLS_CTR_DRBG_MAX_SEED_INPUT ||
|
|
|
|
len > MBEDTLS_CTR_DRBG_MAX_SEED_INPUT - ctx->entropy_len )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG );
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
memset( seed, 0, MBEDTLS_CTR_DRBG_MAX_SEED_INPUT );
|
2011-11-27 15:46:59 +01:00
|
|
|
|
|
|
|
/*
|
2013-09-11 10:53:05 +02:00
|
|
|
* Gather entropy_len bytes of entropy to seed state
|
2011-11-27 15:46:59 +01:00
|
|
|
*/
|
|
|
|
if( 0 != ctx->f_entropy( ctx->p_entropy, seed,
|
|
|
|
ctx->entropy_len ) )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED );
|
2011-11-27 15:46:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
seedlen += ctx->entropy_len;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add additional data
|
|
|
|
*/
|
|
|
|
if( additional && len )
|
|
|
|
{
|
|
|
|
memcpy( seed + seedlen, additional, len );
|
|
|
|
seedlen += len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Reduce to 384 bits
|
|
|
|
*/
|
2017-06-26 12:43:34 +02:00
|
|
|
if( ( ret = block_cipher_df( seed, seed, seedlen ) ) != 0 )
|
|
|
|
{
|
|
|
|
return( ret );
|
|
|
|
}
|
2011-11-27 15:46:59 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Update state
|
|
|
|
*/
|
2017-06-26 12:43:34 +02:00
|
|
|
if( ( ret = ctr_drbg_update_internal( ctx, seed ) ) != 0 )
|
|
|
|
{
|
|
|
|
return( ret );
|
|
|
|
}
|
2011-11-27 15:46:59 +01:00
|
|
|
ctx->reseed_counter = 1;
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2014-05-01 13:03:14 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ctr_drbg_random_with_add( void *p_rng,
|
2011-11-27 15:46:59 +01:00
|
|
|
unsigned char *output, size_t output_len,
|
2011-12-03 12:29:32 +01:00
|
|
|
const unsigned char *additional, size_t add_len )
|
2011-11-27 15:46:59 +01:00
|
|
|
{
|
|
|
|
int ret = 0;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ctr_drbg_context *ctx = (mbedtls_ctr_drbg_context *) p_rng;
|
|
|
|
unsigned char add_input[MBEDTLS_CTR_DRBG_SEEDLEN];
|
2011-11-27 15:46:59 +01:00
|
|
|
unsigned char *p = output;
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char tmp[MBEDTLS_CTR_DRBG_BLOCKSIZE];
|
2012-04-18 16:16:09 +02:00
|
|
|
int i;
|
2011-11-29 16:56:12 +01:00
|
|
|
size_t use_len;
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( output_len > MBEDTLS_CTR_DRBG_MAX_REQUEST )
|
|
|
|
return( MBEDTLS_ERR_CTR_DRBG_REQUEST_TOO_BIG );
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( add_len > MBEDTLS_CTR_DRBG_MAX_INPUT )
|
|
|
|
return( MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG );
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
memset( add_input, 0, MBEDTLS_CTR_DRBG_SEEDLEN );
|
2011-11-27 15:46:59 +01:00
|
|
|
|
|
|
|
if( ctx->reseed_counter > ctx->reseed_interval ||
|
|
|
|
ctx->prediction_resistance )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_ctr_drbg_reseed( ctx, additional, add_len ) ) != 0 )
|
2017-06-26 12:43:34 +02:00
|
|
|
{
|
2011-11-27 15:46:59 +01:00
|
|
|
return( ret );
|
2017-06-26 12:43:34 +02:00
|
|
|
}
|
2011-11-27 15:46:59 +01:00
|
|
|
add_len = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( add_len > 0 )
|
|
|
|
{
|
2017-06-26 12:43:34 +02:00
|
|
|
if( ( ret = block_cipher_df( add_input, additional, add_len ) ) != 0 )
|
|
|
|
{
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
if( ( ret = ctr_drbg_update_internal( ctx, add_input ) ) != 0 )
|
|
|
|
{
|
|
|
|
return( ret );
|
|
|
|
}
|
2011-11-27 15:46:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
while( output_len > 0 )
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Increase counter
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
for( i = MBEDTLS_CTR_DRBG_BLOCKSIZE; i > 0; i-- )
|
2012-04-18 16:16:09 +02:00
|
|
|
if( ++ctx->counter[i - 1] != 0 )
|
|
|
|
break;
|
2011-11-27 15:46:59 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Crypt counter block
|
|
|
|
*/
|
2017-06-26 12:43:34 +02:00
|
|
|
if( ( ret = mbedtls_aes_crypt_ecb( &ctx->aes_ctx, MBEDTLS_AES_ENCRYPT, ctx->counter, tmp ) ) != 0 )
|
|
|
|
{
|
|
|
|
return( ret );
|
|
|
|
}
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
use_len = ( output_len > MBEDTLS_CTR_DRBG_BLOCKSIZE ) ? MBEDTLS_CTR_DRBG_BLOCKSIZE :
|
2014-05-01 14:18:25 +02:00
|
|
|
output_len;
|
2011-11-27 15:46:59 +01:00
|
|
|
/*
|
|
|
|
* Copy random block to destination
|
|
|
|
*/
|
2011-11-29 16:56:12 +01:00
|
|
|
memcpy( p, tmp, use_len );
|
|
|
|
p += use_len;
|
|
|
|
output_len -= use_len;
|
2011-11-27 15:46:59 +01:00
|
|
|
}
|
|
|
|
|
2017-06-26 12:43:34 +02:00
|
|
|
if( ( ret = ctr_drbg_update_internal( ctx, add_input ) ) != 0 )
|
|
|
|
{
|
|
|
|
return( ret );
|
|
|
|
}
|
2011-11-27 15:46:59 +01:00
|
|
|
|
|
|
|
ctx->reseed_counter++;
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ctr_drbg_random( void *p_rng, unsigned char *output, size_t output_len )
|
2011-11-27 15:46:59 +01:00
|
|
|
{
|
2015-05-07 13:50:31 +02:00
|
|
|
int ret;
|
|
|
|
mbedtls_ctr_drbg_context *ctx = (mbedtls_ctr_drbg_context *) p_rng;
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
|
|
|
if( ( ret = mbedtls_mutex_lock( &ctx->mutex ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ret = mbedtls_ctr_drbg_random_with_add( ctx, output, output_len, NULL, 0 );
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
|
|
|
if( mbedtls_mutex_unlock( &ctx->mutex ) != 0 )
|
|
|
|
return( MBEDTLS_ERR_THREADING_MUTEX_ERROR );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return( ret );
|
2011-11-27 15:46:59 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_FS_IO)
|
|
|
|
int mbedtls_ctr_drbg_write_seed_file( mbedtls_ctr_drbg_context *ctx, const char *path )
|
2011-12-05 14:23:51 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
int ret = MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR;
|
2011-12-05 14:23:51 +01:00
|
|
|
FILE *f;
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char buf[ MBEDTLS_CTR_DRBG_MAX_INPUT ];
|
2011-12-05 14:23:51 +01:00
|
|
|
|
|
|
|
if( ( f = fopen( path, "wb" ) ) == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR );
|
2011-12-05 14:23:51 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_ctr_drbg_random( ctx, buf, MBEDTLS_CTR_DRBG_MAX_INPUT ) ) != 0 )
|
2013-05-14 13:22:41 +02:00
|
|
|
goto exit;
|
2011-12-05 14:23:51 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( fwrite( buf, 1, MBEDTLS_CTR_DRBG_MAX_INPUT, f ) != MBEDTLS_CTR_DRBG_MAX_INPUT )
|
|
|
|
ret = MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR;
|
2017-06-26 11:56:58 +02:00
|
|
|
else
|
|
|
|
ret = 0;
|
2011-12-05 14:23:51 +01:00
|
|
|
|
2017-06-27 17:57:26 +02:00
|
|
|
exit:
|
2017-06-26 11:56:58 +02:00
|
|
|
mbedtls_zeroize( buf, sizeof( buf ) );
|
2013-05-14 13:22:41 +02:00
|
|
|
|
2011-12-05 14:23:51 +01:00
|
|
|
fclose( f );
|
2013-05-14 13:22:41 +02:00
|
|
|
return( ret );
|
2011-12-05 14:23:51 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ctr_drbg_update_seed_file( mbedtls_ctr_drbg_context *ctx, const char *path )
|
2011-12-05 14:23:51 +01:00
|
|
|
{
|
2017-06-26 11:56:58 +02:00
|
|
|
int ret = 0;
|
2011-12-05 14:23:51 +01:00
|
|
|
FILE *f;
|
|
|
|
size_t n;
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char buf[ MBEDTLS_CTR_DRBG_MAX_INPUT ];
|
2011-12-05 14:23:51 +01:00
|
|
|
|
|
|
|
if( ( f = fopen( path, "rb" ) ) == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR );
|
2011-12-05 14:23:51 +01:00
|
|
|
|
|
|
|
fseek( f, 0, SEEK_END );
|
|
|
|
n = (size_t) ftell( f );
|
|
|
|
fseek( f, 0, SEEK_SET );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( n > MBEDTLS_CTR_DRBG_MAX_INPUT )
|
2017-06-27 17:57:26 +02:00
|
|
|
{
|
|
|
|
fclose( f );
|
|
|
|
return( MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( fread( buf, 1, n, f ) != n )
|
2017-06-26 11:56:58 +02:00
|
|
|
ret = MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR;
|
|
|
|
else
|
|
|
|
mbedtls_ctr_drbg_update( ctx, buf, n );
|
2011-12-05 14:23:51 +01:00
|
|
|
|
|
|
|
fclose( f );
|
2013-05-14 13:22:41 +02:00
|
|
|
|
2017-06-26 11:56:58 +02:00
|
|
|
mbedtls_zeroize( buf, sizeof( buf ) );
|
|
|
|
|
|
|
|
if( ret != 0 )
|
|
|
|
return( ret );
|
2013-05-14 13:22:41 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
return( mbedtls_ctr_drbg_write_seed_file( ctx, path ) );
|
2011-12-05 14:23:51 +01:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_FS_IO */
|
2011-12-05 14:23:51 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SELF_TEST)
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-03-11 10:13:42 +01:00
|
|
|
static const unsigned char entropy_source_pr[96] =
|
2011-11-27 15:46:59 +01:00
|
|
|
{ 0xc1, 0x80, 0x81, 0xa6, 0x5d, 0x44, 0x02, 0x16,
|
|
|
|
0x19, 0xb3, 0xf1, 0x80, 0xb1, 0xc9, 0x20, 0x02,
|
|
|
|
0x6a, 0x54, 0x6f, 0x0c, 0x70, 0x81, 0x49, 0x8b,
|
|
|
|
0x6e, 0xa6, 0x62, 0x52, 0x6d, 0x51, 0xb1, 0xcb,
|
|
|
|
0x58, 0x3b, 0xfa, 0xd5, 0x37, 0x5f, 0xfb, 0xc9,
|
|
|
|
0xff, 0x46, 0xd2, 0x19, 0xc7, 0x22, 0x3e, 0x95,
|
|
|
|
0x45, 0x9d, 0x82, 0xe1, 0xe7, 0x22, 0x9f, 0x63,
|
|
|
|
0x31, 0x69, 0xd2, 0x6b, 0x57, 0x47, 0x4f, 0xa3,
|
|
|
|
0x37, 0xc9, 0x98, 0x1c, 0x0b, 0xfb, 0x91, 0x31,
|
|
|
|
0x4d, 0x55, 0xb9, 0xe9, 0x1c, 0x5a, 0x5e, 0xe4,
|
|
|
|
0x93, 0x92, 0xcf, 0xc5, 0x23, 0x12, 0xd5, 0x56,
|
|
|
|
0x2c, 0x4a, 0x6e, 0xff, 0xdc, 0x10, 0xd0, 0x68 };
|
|
|
|
|
2015-03-11 10:13:42 +01:00
|
|
|
static const unsigned char entropy_source_nopr[64] =
|
2011-11-27 15:46:59 +01:00
|
|
|
{ 0x5a, 0x19, 0x4d, 0x5e, 0x2b, 0x31, 0x58, 0x14,
|
|
|
|
0x54, 0xde, 0xf6, 0x75, 0xfb, 0x79, 0x58, 0xfe,
|
|
|
|
0xc7, 0xdb, 0x87, 0x3e, 0x56, 0x89, 0xfc, 0x9d,
|
|
|
|
0x03, 0x21, 0x7c, 0x68, 0xd8, 0x03, 0x38, 0x20,
|
|
|
|
0xf9, 0xe6, 0x5e, 0x04, 0xd8, 0x56, 0xf3, 0xa9,
|
|
|
|
0xc4, 0x4a, 0x4c, 0xbd, 0xc1, 0xd0, 0x08, 0x46,
|
|
|
|
0xf5, 0x98, 0x3d, 0x77, 0x1c, 0x1b, 0x13, 0x7e,
|
|
|
|
0x4e, 0x0f, 0x9d, 0x8e, 0xf4, 0x09, 0xf9, 0x2e };
|
|
|
|
|
2014-01-31 12:04:06 +01:00
|
|
|
static const unsigned char nonce_pers_pr[16] =
|
2011-11-27 15:46:59 +01:00
|
|
|
{ 0xd2, 0x54, 0xfc, 0xff, 0x02, 0x1e, 0x69, 0xd2,
|
|
|
|
0x29, 0xc9, 0xcf, 0xad, 0x85, 0xfa, 0x48, 0x6c };
|
|
|
|
|
2014-01-31 12:04:06 +01:00
|
|
|
static const unsigned char nonce_pers_nopr[16] =
|
2011-11-27 15:46:59 +01:00
|
|
|
{ 0x1b, 0x54, 0xb8, 0xff, 0x06, 0x42, 0xbf, 0xf5,
|
|
|
|
0x21, 0xf1, 0x5c, 0x1c, 0x0b, 0x66, 0x5f, 0x3f };
|
|
|
|
|
2014-01-31 12:04:06 +01:00
|
|
|
static const unsigned char result_pr[16] =
|
2011-11-27 15:46:59 +01:00
|
|
|
{ 0x34, 0x01, 0x16, 0x56, 0xb4, 0x29, 0x00, 0x8f,
|
|
|
|
0x35, 0x63, 0xec, 0xb5, 0xf2, 0x59, 0x07, 0x23 };
|
|
|
|
|
2014-01-31 12:04:06 +01:00
|
|
|
static const unsigned char result_nopr[16] =
|
2011-11-27 15:46:59 +01:00
|
|
|
{ 0xa0, 0x54, 0x30, 0x3d, 0x8a, 0x7e, 0xa9, 0x88,
|
|
|
|
0x9d, 0x90, 0x3e, 0x07, 0x7c, 0x6f, 0x21, 0x8f };
|
|
|
|
|
2014-03-21 10:54:55 +01:00
|
|
|
static size_t test_offset;
|
2013-06-25 16:25:17 +02:00
|
|
|
static int ctr_drbg_self_test_entropy( void *data, unsigned char *buf,
|
|
|
|
size_t len )
|
2011-11-27 15:46:59 +01:00
|
|
|
{
|
2014-01-31 12:04:06 +01:00
|
|
|
const unsigned char *p = data;
|
2011-11-27 15:46:59 +01:00
|
|
|
memcpy( buf, p + test_offset, len );
|
2014-01-31 12:04:06 +01:00
|
|
|
test_offset += len;
|
2011-11-27 15:46:59 +01:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2014-02-01 22:50:26 +01:00
|
|
|
#define CHK( c ) if( (c) != 0 ) \
|
|
|
|
{ \
|
|
|
|
if( verbose != 0 ) \
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "failed\n" ); \
|
2014-02-01 22:50:26 +01:00
|
|
|
return( 1 ); \
|
2014-01-31 12:04:06 +01:00
|
|
|
}
|
|
|
|
|
2011-11-27 15:46:59 +01:00
|
|
|
/*
|
|
|
|
* Checkup routine
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ctr_drbg_self_test( int verbose )
|
2011-11-27 15:46:59 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ctr_drbg_context ctx;
|
2011-11-27 15:46:59 +01:00
|
|
|
unsigned char buf[16];
|
|
|
|
|
2015-04-28 22:38:08 +02:00
|
|
|
mbedtls_ctr_drbg_init( &ctx );
|
|
|
|
|
2011-11-27 15:46:59 +01:00
|
|
|
/*
|
|
|
|
* Based on a NIST CTR_DRBG test vector (PR = True)
|
|
|
|
*/
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " CTR_DRBG (PR = TRUE) : " );
|
2011-11-27 15:46:59 +01:00
|
|
|
|
|
|
|
test_offset = 0;
|
2015-04-28 22:38:08 +02:00
|
|
|
CHK( mbedtls_ctr_drbg_seed_entropy_len( &ctx, ctr_drbg_self_test_entropy,
|
2015-03-11 10:13:42 +01:00
|
|
|
(void *) entropy_source_pr, nonce_pers_pr, 16, 32 ) );
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ctr_drbg_set_prediction_resistance( &ctx, MBEDTLS_CTR_DRBG_PR_ON );
|
|
|
|
CHK( mbedtls_ctr_drbg_random( &ctx, buf, MBEDTLS_CTR_DRBG_BLOCKSIZE ) );
|
|
|
|
CHK( mbedtls_ctr_drbg_random( &ctx, buf, MBEDTLS_CTR_DRBG_BLOCKSIZE ) );
|
|
|
|
CHK( memcmp( buf, result_pr, MBEDTLS_CTR_DRBG_BLOCKSIZE ) );
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-05-07 13:50:31 +02:00
|
|
|
mbedtls_ctr_drbg_free( &ctx );
|
|
|
|
|
2011-11-27 15:46:59 +01:00
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "passed\n" );
|
2011-11-27 15:46:59 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Based on a NIST CTR_DRBG test vector (PR = FALSE)
|
|
|
|
*/
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " CTR_DRBG (PR = FALSE): " );
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-05-07 13:50:31 +02:00
|
|
|
mbedtls_ctr_drbg_init( &ctx );
|
|
|
|
|
2011-11-27 15:46:59 +01:00
|
|
|
test_offset = 0;
|
2015-04-28 22:38:08 +02:00
|
|
|
CHK( mbedtls_ctr_drbg_seed_entropy_len( &ctx, ctr_drbg_self_test_entropy,
|
2015-03-11 10:13:42 +01:00
|
|
|
(void *) entropy_source_nopr, nonce_pers_nopr, 16, 32 ) );
|
2015-04-08 12:49:31 +02:00
|
|
|
CHK( mbedtls_ctr_drbg_random( &ctx, buf, 16 ) );
|
|
|
|
CHK( mbedtls_ctr_drbg_reseed( &ctx, NULL, 0 ) );
|
|
|
|
CHK( mbedtls_ctr_drbg_random( &ctx, buf, 16 ) );
|
2014-01-31 12:04:06 +01:00
|
|
|
CHK( memcmp( buf, result_nopr, 16 ) );
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-05-07 13:50:31 +02:00
|
|
|
mbedtls_ctr_drbg_free( &ctx );
|
|
|
|
|
2011-11-27 15:46:59 +01:00
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "passed\n" );
|
2011-11-27 15:46:59 +01:00
|
|
|
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n" );
|
2011-11-27 15:46:59 +01:00
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_SELF_TEST */
|
2011-11-27 15:46:59 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_CTR_DRBG_C */
|