Loading crypto/dh_helper.c +1 −1 Original line number Diff line number Diff line Loading @@ -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; } 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); } Loading include/crypto/dh.h +1 −1 Original line number Diff line number Diff line Loading @@ -53,7 +53,7 @@ struct dh { * * 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 Loading Loading
crypto/dh_helper.c +1 −1 Original line number Diff line number Diff line Loading @@ -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; } 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); } Loading
include/crypto/dh.h +1 −1 Original line number Diff line number Diff line Loading @@ -53,7 +53,7 @@ struct dh { * * 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 Loading