Fixed some typos, courtesy of codespell

This commit is contained in:
Tobias Brunner
2019-12-12 11:09:06 +01:00
parent 174bfe51f9
commit a669145086
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -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);
+1 -1
View File
@@ -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)
+1 -1
View File
@@ -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)
{ {
+1 -1
View File
@@ -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)
{ {