Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
paramiko
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenVMS
Python
Modules
paramiko
Commits
a52af96d758f
Commit
a52af96d758f
authored
14 years ago
by
Robey Pointer
Browse files
Options
Downloads
Patches
Plain Diff
version 1.7.7.1
parent
9eb6987215d6
No related branches found
No related tags found
No related merge requests found
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
Makefile
+1
-1
1 addition, 1 deletion
Makefile
NEWS
+2
-2
2 additions, 2 deletions
NEWS
README
+2
-2
2 additions, 2 deletions
README
paramiko/__init__.py
+3
-3
3 additions, 3 deletions
paramiko/__init__.py
paramiko/transport.py
+1
-1
1 addition, 1 deletion
paramiko/transport.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
10 additions
and
10 deletions
Makefile
+
1
−
1
View file @
a52af96d
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
# desmond (06jul08) - 1.7.4
# desmond (06jul08) - 1.7.4
# ernest (19jul09) - 1.7.5
# ernest (19jul09) - 1.7.5
# fanny (1nov09) - 1.7.6
# fanny (1nov09) - 1.7.6
# george (21may11) - 1.7.7
# george (21may11) - 1.7.7
.1
ifeq
($(wildcard /sbin/md5),/sbin/md5)
ifeq
($(wildcard /sbin/md5),/sbin/md5)
...
...
This diff is collapsed.
Click to expand it.
NEWS
+
2
−
2
View file @
a52af96d
...
@@ -8,8 +8,8 @@
...
@@ -8,8 +8,8 @@
Releases
Releases
========
========
v1.7.7 (George) 21may11
v1.7.7
.1
(George) 21may11
-----------------------
-----------------------
--
* Make the verification phase of SFTP.put optional (Larry Wright)
* Make the verification phase of SFTP.put optional (Larry Wright)
* Patches to fix AIX support (anonymous)
* Patches to fix AIX support (anonymous)
* Patch from Michele Bertoldi to allow compression to be turned on in the
* Patch from Michele Bertoldi to allow compression to be turned on in the
...
...
This diff is collapsed.
Click to expand it.
README
+
2
−
2
View file @
a52af96d
...
@@ -9,8 +9,8 @@
...
@@ -9,8 +9,8 @@
:Homepage: http://www.lag.net/paramiko/
:Homepage: http://www.lag.net/paramiko/
paramiko 1.7.7
paramiko 1.7.7
.1
==============
==============
==
"George" release, 21 may 2011
"George" release, 21 may 2011
...
...
This diff is collapsed.
Click to expand it.
paramiko/__init__.py
+
3
−
3
View file @
a52af96d
...
@@ -47,7 +47,7 @@
...
@@ -47,7 +47,7 @@
Website: U{http://www.lag.net/paramiko/}
Website: U{http://www.lag.net/paramiko/}
@version: 1.7.7 (George)
@version: 1.7.7
.1
(George)
@author: Robey Pointer
@author: Robey Pointer
@contact: robeypointer@gmail.com
@contact: robeypointer@gmail.com
@license: GNU Lesser General Public License (LGPL)
@license: GNU Lesser General Public License (LGPL)
...
@@ -61,8 +61,8 @@
...
@@ -61,8 +61,8 @@
__author__
=
"
Robey Pointer <robeypointer@gmail.com>
"
__author__
=
"
Robey Pointer <robeypointer@gmail.com>
"
__date__
=
"
21 May 2011
"
__date__
=
"
21 May 2011
"
__version__
=
"
1.7.7 (George)
"
__version__
=
"
1.7.7
.1
(George)
"
__version_info__
=
(
1
,
7
,
7
)
__version_info__
=
(
1
,
7
,
7
,
1
)
__license__
=
"
GNU Lesser General Public License (LGPL)
"
__license__
=
"
GNU Lesser General Public License (LGPL)
"
...
...
This diff is collapsed.
Click to expand it.
paramiko/transport.py
+
1
−
1
View file @
a52af96d
...
@@ -194,7 +194,7 @@
...
@@ -194,7 +194,7 @@
"""
"""
_PROTO_ID
=
'
2.0
'
_PROTO_ID
=
'
2.0
'
_CLIENT_ID
=
'
paramiko_1.7.7
'
_CLIENT_ID
=
'
paramiko_1.7.7
.1
'
_preferred_ciphers
=
(
'
aes128-ctr
'
,
'
aes256-ctr
'
,
'
aes128-cbc
'
,
'
blowfish-cbc
'
,
'
aes256-cbc
'
,
'
3des-cbc
'
,
_preferred_ciphers
=
(
'
aes128-ctr
'
,
'
aes256-ctr
'
,
'
aes128-cbc
'
,
'
blowfish-cbc
'
,
'
aes256-cbc
'
,
'
3des-cbc
'
,
'
arcfour128
'
,
'
arcfour256
'
)
'
arcfour128
'
,
'
arcfour256
'
)
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
a52af96d
...
@@ -48,7 +48,7 @@
...
@@ -48,7 +48,7 @@
setup
(
name
=
"
paramiko
"
,
setup
(
name
=
"
paramiko
"
,
version
=
"
1.7.7
"
,
version
=
"
1.7.7
.1
"
,
description
=
"
SSH2 protocol library
"
,
description
=
"
SSH2 protocol library
"
,
author
=
"
Robey Pointer
"
,
author
=
"
Robey Pointer
"
,
author_email
=
"
robeypointer@gmail.com
"
,
author_email
=
"
robeypointer@gmail.com
"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment