]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - openssl.c
openssl: Rename read_private_rsa_params() -> read_openssh_private_key().
[paraslash.git] / openssl.c
index 9804fe6c74f01e89d5fcd10e3e916d55c7cb538b..0808a8b09c22210e53ff6a4cd3b22f337aec7362 100644 (file)
--- a/openssl.c
+++ b/openssl.c
@@ -149,7 +149,7 @@ bio_free:
        return *rsa? RSA_size(*rsa) : -E_PRIVATE_KEY;
 }
 
-static int read_private_rsa_params(const unsigned char *blob,
+static int read_openssh_private_key(const unsigned char *blob,
                const unsigned char *end, RSA **result)
 {
        int ret;
@@ -267,7 +267,7 @@ static int get_private_key(const char *path, RSA **rsa)
                if (ret < 0)
                        goto free_blob;
                PARA_INFO_LOG("reading RSA params at offset %d\n", ret);
-               ret = read_private_rsa_params(blob + ret, end, rsa);
+               ret = read_openssh_private_key(blob + ret, end, rsa);
        } else
                ret = read_pem_private_key(path, rsa);
 free_blob: