Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
37a29118
Commit
37a29118
authored
Jun 21, 1995
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
placeholder for security measures
parent
e830e556
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
+26
-0
Demo/pdist/security.py
Demo/pdist/security.py
+26
-0
No files found.
Demo/pdist/security.py
0 → 100755
View file @
37a29118
class
Security
:
def
__init__
(
self
):
import
os
env
=
os
.
environ
if
env
.
has_key
(
'PYTHON_KEYFILE'
):
keyfile
=
env
[
'PYTHON_KEYFILE'
]
elif
env
.
has_key
(
'HOME'
):
keyfile
=
env
[
'HOME'
]
+
'.python_keyfile'
else
:
keyfile
=
'.python_keyfile'
try
:
self
.
_key
=
eval
(
open
(
keyfile
).
readline
())
except
IOError
:
raise
IOError
,
"python keyfile %s not found"
%
keyfile
def
_generate_challenge
(
self
):
import
whrandom
return
whrandom
.
randint
(
100
,
100000
)
def
_compare_challenge_response
(
self
,
challenge
,
response
):
return
self
.
_encode_challenge
(
challenge
)
==
response
def
_encode_challenge
(
self
,
challenge
):
p
,
m
=
self
.
_key
return
pow
(
challenge
,
p
,
m
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment