提交 5b3f3a8b 编写于 作者: T Tudor-Dan Ambarus 提交者: Herbert Xu

crypto: dh - return unsigned value for crypto_dh_key_len()

DH_KPP_SECRET_MIN_SIZE and dh_data_size() are both returning
unsigned values.
Signed-off-by: NTudor Ambarus <tudor.ambarus@microchip.com>
Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
上级 cb195b36
...@@ -33,7 +33,7 @@ static inline unsigned int dh_data_size(const struct dh *p) ...@@ -33,7 +33,7 @@ static inline unsigned int dh_data_size(const struct dh *p)
return p->key_size + p->p_size + p->g_size; return p->key_size + p->p_size + p->g_size;
} }
int crypto_dh_key_len(const struct dh *p) unsigned int crypto_dh_key_len(const struct dh *p)
{ {
return DH_KPP_SECRET_MIN_SIZE + dh_data_size(p); return DH_KPP_SECRET_MIN_SIZE + dh_data_size(p);
} }
......
...@@ -53,7 +53,7 @@ struct dh { ...@@ -53,7 +53,7 @@ struct dh {
* *
* Return: size of the key in bytes * Return: size of the key in bytes
*/ */
int crypto_dh_key_len(const struct dh *params); unsigned int crypto_dh_key_len(const struct dh *params);
/** /**
* crypto_dh_encode_key() - encode the private key * crypto_dh_encode_key() - encode the private key
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册