From ed280d5ac360e2af796e9bd973d7b4df89f0c449 Mon Sep 17 00:00:00 2001 From: "Jeremy T. Bouse" Date: Fri, 27 Nov 2009 16:20:12 -0500 Subject: Imported Upstream version 1.7.4 --- docs/public/paramiko.AgentKey-class.html | 236 ------------------------------- 1 file changed, 236 deletions(-) delete mode 100644 docs/public/paramiko.AgentKey-class.html (limited to 'docs/public/paramiko.AgentKey-class.html') diff --git a/docs/public/paramiko.AgentKey-class.html b/docs/public/paramiko.AgentKey-class.html deleted file mode 100644 index 203e0f4..0000000 --- a/docs/public/paramiko.AgentKey-class.html +++ /dev/null @@ -1,236 +0,0 @@ - - - - - paramiko.AgentKey - - - - - - - - - - - - - - - - - - -
- - Package paramiko :: - Class AgentKey -
-
- - -
[show private | hide private]
[frames | no frames]
- - -

Type AgentKey

- -
-object --+    
-         |    
-      PKey --+
-             |
-            AgentKey
-

- -
- -Private key held in a local SSH agent. This type of key can be used -for authenticating to a remote server (signing). Most other key -operations work as expected. -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Method Summary
 __init__(self, - agent, - blob) -
str -__str__(self) -
-Return a string of an SSH Message made up of the public part(s) of -this key.
str -get_name(self) -
-Return the name of this private key implementation.
Message -sign_ssh_data(self, - randpool, - data) -
-Sign a blob of data with this private key, and return a Message -representing an SSH signature message.
    Inherited from object
 __delattr__(...) -
-x.__delattr__('name') <==> del x.name
 __getattribute__(...) -
-x.__getattribute__('name') <==> x.name
 __hash__(x) -
-x.__hash__() <==> hash(x)
 __new__(T, - S, - ...) -
-T.__new__(S, ...) -> a new object with type S, a subtype of T
 __reduce__(...) -
-helper for pickle
 __reduce_ex__(...) -
-helper for pickle
 __repr__(x) -
-x.__repr__() <==> repr(x)
 __setattr__(...) -
-x.__setattr__('name', value) <==> x.name = value

- - - - - - -
Instance Method Details
- - -
-

__str__(self) -
(Informal representation operator) -

- Return a string of an SSH Message made up of the public part(s) of - this key. This string is suitable for passing to __init__ to re-create the key object - later. -
-
Returns:
-
- string representation of an SSH key message. -
           - (type=str) -
-
-
Overrides:
-
paramiko.PKey.__str__ (inherited documentation) -
-
-
-
- - -
-

get_name(self) -

- Return the name of this private key implementation. -
-
Returns:
-
- name of this private key type, in SSH terminology (for - example, "ssh-rsa"). -
           - (type=str) -
-
-
Overrides:
-
paramiko.PKey.get_name (inherited documentation) -
-
-
-
- - -
-

sign_ssh_data(self, - randpool, - data) -

- Sign a blob of data with this private key, and return a Message representing an SSH signature - message. -
-
Parameters:
-
randpool - - a secure random number generator. -
           - (type=Crypto.Util.randpool.RandomPool) -
data - - the data to sign. -
           - (type=str) -
-
-
Returns:
-
- an SSH signature message. -
           - (type=Message) -
-
-
Overrides:
-
paramiko.PKey.sign_ssh_data (inherited documentation) -
-
-
-
-
- - - - - - - - - - - - - - - - - - -
Generated by Epydoc 2.1 on Sun Dec 4 11:16:47 2005http://epydoc.sf.net
- - -- cgit v1.2.3