Home | Trees | Index | Help |
---|
Package paramiko :: Class RSAKey |
|
object
--+ |PKey
--+ | RSAKey
Method Summary | |
---|---|
Create a new instance of this public key type. | |
__hash__(self)
| |
str |
Return a string of an SSH Message made up of the public part(s) of
this key. |
bool |
Return True if this key has the private part necessary
for signing data. |
RSAKey
|
Generate a new private RSA key. (Static method) |
int |
Return the number of significant bits in this key. |
str |
Return the name of this private key implementation. |
sign_ssh_data(self,
rpool,
data)
| |
boolean |
Given a blob of data, and an SSH message representing a signature of that data, verify that it was signed with this key. |
Write private key contents into a file. | |
_from_private_key_file(self,
filename,
password)
| |
turn a 20-byte SHA1 hash into a blob of data as large as the key's N, using PKCS1's "emsa-pkcs1-v1_5" encoding. | |
Inherited from PKey | |
int |
Compare this key to another. |
str |
Read an SSH2-format private key file, looking for a string of the type "BEGIN xxx PRIVATE KEY" for some xxx ,
base64-decode the text we find, and return it as a string. |
Write an SSH2-format private key file in a form that can be read by paramiko or openssh. | |
PKey
|
Create a key object by reading a private key file. (Class method) |
str |
Return a base64 string containing the public part of this key. |
str |
Return an MD5 fingerprint of the public part of this key. |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value |
Class Variable Summary | |
---|---|
Inherited from PKey | |
dict |
_CIPHER_TABLE = {'DES-EDE3-CBC': {'blocksize': 8, 'ciphe...
|
Instance Method Details |
---|
__init__(self,
msg=None,
data=None,
filename=None,
password=None,
vals=None)
Create a new instance of this public key type. If |
__str__(self)
Return a string of an SSH |
can_sign(self)ReturnTrue if this key has the private part necessary
for signing data.
|
get_bits(self)Return the number of significant bits in this key. This is useful for judging the relative security of a key.
|
get_name(self)Return the name of this private key implementation.
|
verify_ssh_sig(self, data, msg)Given a blob of data, and an SSH message representing a signature of that data, verify that it was signed with this key.
|
write_private_key_file(self, filename, password=None)Write private key contents into a file. If the password is notNone , the key is encrypted before writing.
|
_pkcs1imify(self, data)turn a 20-byte SHA1 hash into a blob of data as large as the key's N, using PKCS1's "emsa-pkcs1-v1_5" encoding. totally bizarre. |
Static Method Details |
---|
generate(bits, progress_func=None)Generate a new private RSA key. This factory function can be used to generate a new host key or authentication key.
|
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.1 on Sun Dec 4 11:16:47 2005 | http://epydoc.sf.net |