Internal renamings in PK

+ an unrelated comment in SSL
This commit is contained in:
Manuel Pégourié-Gonnard 2015-06-18 16:06:55 +02:00
parent 12ad798c87
commit 39a48f4934
4 changed files with 12 additions and 12 deletions

View file

@ -332,7 +332,7 @@ size_t mbedtls_pk_get_size( const mbedtls_pk_context *ctx )
if( ctx == NULL || ctx->pk_info == NULL )
return( 0 );
return( ctx->pk_info->get_size( ctx->pk_ctx ) );
return( ctx->pk_info->get_bitlen( ctx->pk_ctx ) );
}
/*