From 9d04094a5d15b5554158f3557644ef60e79c8856 Mon Sep 17 00:00:00 2001 From: stensmo <141365386+stensmo@users.noreply.github.com> Date: Tue, 14 May 2024 22:00:21 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8d668bd..8382e49 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Examples: df=DataFrame(CSV.File(SFTPClient.download(sftp, "/mydir/test.csv"))) # For certificate authentication, you can do this (since 0.3.8) - sftp = SFTP("sftp://mysitewhereIhaveACertificate.com", "myuser", "cert.pub", "cert.pem") + sftp = SFTP("sftp://mysitewhereIhaveACertificate.com", "myuser", "cert.pub", "cert.pem") # Assumes cert.pub and cert.pem is in your current path # The cert.pem is your certificate (private key), and the cert.pub can be obtained from the private key. # ssh-keygen -y -f ./cert.pem. Save the output into "cert.pub".