X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=openssl.c;h=0808a8b09c22210e53ff6a4cd3b22f337aec7362;hb=fa9e0afda25c038c0c9d815f7d812f27f5f34ea0;hp=9804fe6c74f01e89d5fcd10e3e916d55c7cb538b;hpb=f7b521c8ef0ae9af918476f41c67c5b839c865b5;p=paraslash.git diff --git a/openssl.c b/openssl.c index 9804fe6c..0808a8b0 100644 --- 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: