Merge commit '9cb63ab0e4b525c8d067ea94d7e4302203ba835a'

* commit '9cb63ab0e4b525c8d067ea94d7e4302203ba835a':
  Squashed 'features/nanostack/coap-service/' changes from e5e0c138e6..5aa54b8e62
pull/12754/head
Arto Kinnunen 2020-04-03 14:56:53 +03:00
commit 54f3465e45
2 changed files with 12 additions and 12 deletions

View File

@ -249,33 +249,33 @@ int mbedtls_ctr_drbg_random(void *p_rng,
} }
// from hmac_drbg.h // from hmac_drbg.h
void mbedtls_hmac_drbg_init( mbedtls_hmac_drbg_context *ctx ) void mbedtls_hmac_drbg_init(mbedtls_hmac_drbg_context *ctx)
{ {
} }
void mbedtls_hmac_drbg_free( mbedtls_hmac_drbg_context *ctx ) void mbedtls_hmac_drbg_free(mbedtls_hmac_drbg_context *ctx)
{ {
} }
int mbedtls_hmac_drbg_seed( mbedtls_hmac_drbg_context *ctx, int mbedtls_hmac_drbg_seed(mbedtls_hmac_drbg_context *ctx,
const mbedtls_md_info_t * md_info, const mbedtls_md_info_t *md_info,
int (*f_entropy)(void *, unsigned char *, size_t), int (*f_entropy)(void *, unsigned char *, size_t),
void *p_entropy, void *p_entropy,
const unsigned char *custom, const unsigned char *custom,
size_t len ) size_t len)
{ {
return mbedtls_stub.crt_expected_int; return mbedtls_stub.crt_expected_int;
} }
int mbedtls_hmac_drbg_random( void *p_rng, unsigned char *output, size_t out_len ) int mbedtls_hmac_drbg_random(void *p_rng, unsigned char *output, size_t out_len)
{ {
return mbedtls_stub.crt_expected_int; return mbedtls_stub.crt_expected_int;
} }
// from md.h // from md.h
const mbedtls_md_info_t *mbedtls_md_info_from_type( mbedtls_md_type_t md_type ) const mbedtls_md_info_t *mbedtls_md_info_from_type(mbedtls_md_type_t md_type)
{ {
return 0; return 0;
} }