文件名称:sshkey:纯Ruby(RSA和DSA)中的SSH私钥和公钥生成器
文件大小:25KB
文件格式:ZIP
更新时间:2024-05-04 02:40:13
Ruby
SSH密钥 使用纯Ruby生成专用和公用SSH密钥(支持RSA和DSA)。 要求 在CRuby 2.0.0+和JRuby上测试/受支持。 安装 gem install sshkey 用法 生成一个新密钥 生成新的密钥对时,默认密钥类型为2048位RSA,但是您可以在选项中提供type (RSA或DSA)和bits 。 您也可以(可选)提供comment或passphrase 。 k = SSHKey . generate k = SSHKey . generate ( type : "DSA" , bits : 1024 , comment : "foo@bar.com" , passphrase : "foobar" ) 使用您现有的密钥 从现有的RSA或DSA私钥(以字符串形式提供)返回SSHKey对象。 f = File . read
【文件预览】:
sshkey-master
----.gitignore(33B)
----.travis.yml(264B)
----LICENSE(1KB)
----README.md(13KB)
----lib()
--------sshkey.rb(16KB)
--------sshkey()
----sshkey.gemspec(838B)
----Gemfile(90B)
----Rakefile(263B)
----test()
--------sshkey_test.rb(31KB)