From: Tobias Brunner Date: Tue, 10 Dec 2019 16:06:53 +0000 (+0100) Subject: Fixed some typos, courtesy of codespell X-Git-Tag: 5.8.2rc2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a66914508687b2771633e0e071cc9673ee353a61;p=thirdparty%2Fstrongswan.git Fixed some typos, courtesy of codespell --- diff --git a/src/libstrongswan/plugins/ntru/ntru_ke.c b/src/libstrongswan/plugins/ntru/ntru_ke.c index 60a2b5adb5..3e6c3d0833 100644 --- a/src/libstrongswan/plugins/ntru/ntru_ke.c +++ b/src/libstrongswan/plugins/ntru/ntru_ke.c @@ -129,7 +129,7 @@ METHOD(diffie_hellman_t, get_my_public_value, bool, this->privkey = ntru_private_key_create(this->drbg, this->param_set); if (!this->privkey) { - DBG1(DBG_LIB, "NTRU keypair generation failed"); + DBG1(DBG_LIB, "NTRU key pair generation failed"); return FALSE; } this->pubkey = this->privkey->get_public_key(this->privkey); diff --git a/src/libstrongswan/plugins/plugin_loader.c b/src/libstrongswan/plugins/plugin_loader.c index 121248bbeb..b694e97cda 100644 --- a/src/libstrongswan/plugins/plugin_loader.c +++ b/src/libstrongswan/plugins/plugin_loader.c @@ -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, plugin_feature_t *dependency) diff --git a/src/libstrongswan/tests/suites/test_ecdsa.c b/src/libstrongswan/tests/suites/test_ecdsa.c index f31cbcfb61..773e2d193a 100644 --- a/src/libstrongswan/tests/suites/test_ecdsa.c +++ b/src/libstrongswan/tests/suites/test_ecdsa.c @@ -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) { diff --git a/src/libstrongswan/tests/suites/test_rsa.c b/src/libstrongswan/tests/suites/test_rsa.c index db6a09dda8..0ab9dc5c97 100644 --- a/src/libstrongswan/tests/suites/test_rsa.c +++ b/src/libstrongswan/tests/suites/test_rsa.c @@ -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) {