Fixed some typos, courtesy of codespell
This commit is contained in:
@@ -129,7 +129,7 @@ METHOD(diffie_hellman_t, get_my_public_value, bool,
|
|||||||
this->privkey = ntru_private_key_create(this->drbg, this->param_set);
|
this->privkey = ntru_private_key_create(this->drbg, this->param_set);
|
||||||
if (!this->privkey)
|
if (!this->privkey)
|
||||||
{
|
{
|
||||||
DBG1(DBG_LIB, "NTRU keypair generation failed");
|
DBG1(DBG_LIB, "NTRU key pair generation failed");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
this->pubkey = this->privkey->get_public_key(this->privkey);
|
this->pubkey = this->privkey->get_public_key(this->privkey);
|
||||||
|
|||||||
@@ -658,7 +658,7 @@ static bool loadable_feature_matches(registered_feature_t *a,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a compatible plugin feature for the given depencency
|
* Returns a compatible plugin feature for the given dependency
|
||||||
*/
|
*/
|
||||||
static bool find_compatible_feature(private_plugin_loader_t *this,
|
static bool find_compatible_feature(private_plugin_loader_t *this,
|
||||||
plugin_feature_t *dependency)
|
plugin_feature_t *dependency)
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ static struct {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Perform a signature verification "good" test having a keypair
|
* Perform a signature verification "good" test having a key pair
|
||||||
*/
|
*/
|
||||||
static void test_good_sig(private_key_t *privkey, public_key_t *pubkey)
|
static void test_good_sig(private_key_t *privkey, public_key_t *pubkey)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ static rsa_pss_params_t default_pss_params = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Perform a signature verification "good" test having a keypair
|
* Perform a signature verification "good" test having a key pair
|
||||||
*/
|
*/
|
||||||
static void test_good_sig(private_key_t *privkey, public_key_t *pubkey)
|
static void test_good_sig(private_key_t *privkey, public_key_t *pubkey)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user