Python PYSFTP-以字符串/文本形式传递私钥,而不是传递文件路径

Python PYSFTP - pass private-key as string/text instead of passing file path(Python PYSFTP-以字符串/文本形式传递私钥,而不是传递文件路径)
本文介绍了Python PYSFTP-以字符串/文本形式传递私钥,而不是传递文件路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望将我的实际私钥值作为参数传递,而不是提供文件路径。

到目前为止,我已经使用了以下代码:

import pysftp
import os

cnopts = pysftp.CnOpts()
if str(host_keys).lower() =='none':
    cnopts.hostkeys = None
else:
    cnopts.hostkeys.load(hostkeys)
filename = os.path.basename(localpath)
print(filename)
remotepath = os.path.join(remotefolder, filename)
print(remotepath)
with pysftp.Connection(host=hostname, port=int(port), username=username, password=password, cnopts=cnopts,private_key=private_key_filepath) as sftp:
    sftp.put(localpath, remotepath=remotepath)

请建议将其作为文本传递的方法。

示例:

private_key='abcdmyprivatekeytext'

在实际方案中,我将把我的私钥文本放在安全保险库中。

推荐答案

可以接受RSAKey参数RSAKey中的RSAKey

# Set your private key as a string
PRIVATE_KEY = """-----BEGIN RSA PRIVATE KEY-----
...
-----END RSA PRIVATE KEY-----
"""

# Use 'io.StringIO' to read your string as a file-like object.
privkey = io.StringIO(PRIVATE_KEY)

# Use paramiko to create your RSAKey
ki = paramiko.RSAKey.from_private_key(privkey)

# Connect using your key with pysftp
conn = pysftp.Connection(host=HOST, username=USER, private_key=ki)

(最初由@hana发布,但现在已删除答案)

这种private_key参数的用法不受来自pysftp 0.2.9的文档的支持,但它是有效的。不接受其他密钥类型(DSSKeyECDSAKeyEd25519Key)。


如果您需要使用其他密钥类型,请直接使用Paramiko:
SSH/SCP through Paramiko with key in string

pysftp只是Paramiko的废弃包装器。
更喜欢直接使用Paramiko:pysftp vs. Paramiko

这篇关于Python PYSFTP-以字符串/文本形式传递私钥,而不是传递文件路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)