Make md_info_t an opaque structure
- more freedom for us to change it in the future - enforces hygiene - performance impact of making accessors no longer inline should really be negligible
This commit is contained in:
parent
9325b26b42
commit
ca878dbaa5
12 changed files with 117 additions and 100 deletions
|
@ -2194,7 +2194,7 @@ static int ssl_parse_server_key_exchange( ssl_context *ssl )
|
|||
}
|
||||
|
||||
SSL_DEBUG_BUF( 3, "parameters hash", hash, hashlen != 0 ? hashlen :
|
||||
(unsigned int) ( md_info_from_type( md_alg ) )->size );
|
||||
(unsigned int) ( md_get_size( md_info_from_type( md_alg ) ) ) );
|
||||
|
||||
/*
|
||||
* Verify signature
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue