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
c3f810fb
Commit
c3f810fb
authored
Aug 21, 2010
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove outdated comment
parent
c44abb12
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
5 deletions
+0
-5
Lib/hmac.py
Lib/hmac.py
+0
-5
No files found.
Lib/hmac.py
View file @
c3f810fb
...
...
@@ -58,8 +58,6 @@ class HMAC:
if
hasattr
(
self
.
inner
,
'block_size'
):
blocksize
=
self
.
inner
.
block_size
if
blocksize
<
16
:
# Very low blocksize, most likely a legacy value like
# Lib/sha.py and Lib/md5.py have.
_warnings
.
warn
(
'block_size of %d seems too small; using our '
'default of %d.'
%
(
blocksize
,
self
.
blocksize
),
RuntimeWarning
,
2
)
...
...
@@ -79,9 +77,6 @@ class HMAC:
if
msg
is
not
None
:
self
.
update
(
msg
)
## def clear(self):
## raise NotImplementedError, "clear() method not available in HMAC."
def
update
(
self
,
msg
):
"""Update this hashing object with the string msg.
"""
...
...
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