rename some things
diff --git a/tests/hazmat/primitives/utils.py b/tests/hazmat/primitives/utils.py
index 5db9a19..89d0f5f 100644
--- a/tests/hazmat/primitives/utils.py
+++ b/tests/hazmat/primitives/utils.py
@@ -375,20 +375,20 @@
     return test_hkdf
 
 
-def generate_rsa_signature_test(param_loader, path, file_names, hash_alg,
-                                pad_cls):
+def generate_rsa_verification_test(param_loader, path, file_names, hash_alg,
+                                   pad_cls):
     all_params = _load_all_params(path, file_names, param_loader)
     all_params = [i for i in all_params
                   if i["algorithm"] == hash_alg.name.upper()]
 
     @pytest.mark.parametrize("params", all_params)
-    def test_rsa_signature(self, backend, params):
-        rsa_signature_test(backend, params, hash_alg, pad_cls)
+    def test_rsa_verification(self, backend, params):
+        rsa_verification_test(backend, params, hash_alg, pad_cls)
 
-    return test_rsa_signature
+    return test_rsa_verification
 
 
-def rsa_signature_test(backend, params, hash_alg, pad_cls):
+def rsa_verification_test(backend, params, hash_alg, pad_cls):
     public_key = rsa.RSAPublicKey(
         public_exponent=params["public_exponent"],
         modulus=params["modulus"]