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
368c3093
Commit
368c3093
authored
Jun 24, 2012
by
Christian Heimes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #15061: Re-implemented hmac.compare_digest() in C
parent
b54d5896
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
234 additions
and
30 deletions
+234
-30
Doc/library/hmac.rst
Doc/library/hmac.rst
+11
-5
Lib/hmac.py
Lib/hmac.py
+1
-20
Lib/test/test_hmac.py
Lib/test/test_hmac.py
+76
-5
Misc/NEWS
Misc/NEWS
+4
-0
Modules/operator.c
Modules/operator.c
+142
-0
No files found.
Doc/library/hmac.rst
View file @
368c3093
...
@@ -73,7 +73,10 @@ This module also provides the following helper function:
...
@@ -73,7 +73,10 @@ This module also provides the following helper function:
Returns the equivalent of ``a == b``, but avoids content based
Returns the equivalent of ``a == b``, but avoids content based
short circuiting behaviour to reduce the vulnerability to timing
short circuiting behaviour to reduce the vulnerability to timing
analysis. The inputs must be :class:`bytes` instances.
analysis. The inputs must either both support the buffer protocol (e.g.
:class:`bytes` and :class:`bytearray` instances) or be ASCII only
:class:`str` instances as returned by :meth:`hexdigest`.
:class:`bytes` and :class:`str` instances can't be mixed.
Using a short circuiting comparison (that is, one that terminates as soon
Using a short circuiting comparison (that is, one that terminates as soon
as it finds any difference between the values) to check digests for
as it finds any difference between the values) to check digests for
...
@@ -87,10 +90,13 @@ This module also provides the following helper function:
...
@@ -87,10 +90,13 @@ This module also provides the following helper function:
.. note::
.. note::
While this function reduces the likelihood of leaking the contents of
While this function reduces the likelihood of leaking the contents of
the expected digest via a timing attack, it still uses short circuiting
the expected digest via a timing attack, it still may leak some timing
behaviour based on the *length* of the inputs. It is assumed that the
information when the input values differ in lengths as well as in error
expected length of the digest is not a secret, as it is typically
cases like unsupported types or non ASCII strings. When the inputs have
published as part of a file format, network protocol or API definition.
different length the timing depends solely on the length of ``b``. It
is assumed that the expected length of the digest is not a secret, as
it is typically published as part of a file format, network protocol
or API definition.
.. versionadded:: 3.3
.. versionadded:: 3.3
...
...
Lib/hmac.py
View file @
368c3093
...
@@ -4,6 +4,7 @@ Implements the HMAC algorithm as described by RFC 2104.
...
@@ -4,6 +4,7 @@ Implements the HMAC algorithm as described by RFC 2104.
"""
"""
import
warnings
as
_warnings
import
warnings
as
_warnings
from
operator
import
_compare_digest
as
compare_digest
trans_5C
=
bytes
((
x
^
0x5C
)
for
x
in
range
(
256
))
trans_5C
=
bytes
((
x
^
0x5C
)
for
x
in
range
(
256
))
trans_36
=
bytes
((
x
^
0x36
)
for
x
in
range
(
256
))
trans_36
=
bytes
((
x
^
0x36
)
for
x
in
range
(
256
))
...
@@ -13,26 +14,6 @@ trans_36 = bytes((x ^ 0x36) for x in range(256))
...
@@ -13,26 +14,6 @@ trans_36 = bytes((x ^ 0x36) for x in range(256))
digest_size
=
None
digest_size
=
None
def
compare_digest
(
a
,
b
):
"""Returns the equivalent of 'a == b', but avoids content based short
circuiting to reduce the vulnerability to timing attacks."""
# Consistent timing matters more here than data type flexibility
if
not
(
isinstance
(
a
,
bytes
)
and
isinstance
(
b
,
bytes
)):
raise
TypeError
(
"inputs must be bytes instances"
)
# We assume the length of the expected digest is public knowledge,
# thus this early return isn't leaking anything an attacker wouldn't
# already know
if
len
(
a
)
!=
len
(
b
):
return
False
# We assume that integers in the bytes range are all cached,
# thus timing shouldn't vary much due to integer object creation
result
=
0
for
x
,
y
in
zip
(
a
,
b
):
result
|=
x
^
y
return
result
==
0
class
HMAC
:
class
HMAC
:
"""RFC 2104 HMAC class. Also complies with RFC 4231.
"""RFC 2104 HMAC class. Also complies with RFC 4231.
...
...
Lib/test/test_hmac.py
View file @
368c3093
...
@@ -304,7 +304,7 @@ class CopyTestCase(unittest.TestCase):
...
@@ -304,7 +304,7 @@ class CopyTestCase(unittest.TestCase):
class
CompareDigestTestCase
(
unittest
.
TestCase
):
class
CompareDigestTestCase
(
unittest
.
TestCase
):
def
test_compare
(
self
):
def
test_compare
_digest
(
self
):
# Testing input type exception handling
# Testing input type exception handling
a
,
b
=
100
,
200
a
,
b
=
100
,
200
self
.
assertRaises
(
TypeError
,
hmac
.
compare_digest
,
a
,
b
)
self
.
assertRaises
(
TypeError
,
hmac
.
compare_digest
,
a
,
b
)
...
@@ -316,10 +316,6 @@ class CompareDigestTestCase(unittest.TestCase):
...
@@ -316,10 +316,6 @@ class CompareDigestTestCase(unittest.TestCase):
self
.
assertRaises
(
TypeError
,
hmac
.
compare_digest
,
a
,
b
)
self
.
assertRaises
(
TypeError
,
hmac
.
compare_digest
,
a
,
b
)
a
,
b
=
b"foobar"
,
"foobar"
a
,
b
=
b"foobar"
,
"foobar"
self
.
assertRaises
(
TypeError
,
hmac
.
compare_digest
,
a
,
b
)
self
.
assertRaises
(
TypeError
,
hmac
.
compare_digest
,
a
,
b
)
a
,
b
=
"foobar"
,
"foobar"
self
.
assertRaises
(
TypeError
,
hmac
.
compare_digest
,
a
,
b
)
a
,
b
=
bytearray
(
b"foobar"
),
bytearray
(
b"foobar"
)
self
.
assertRaises
(
TypeError
,
hmac
.
compare_digest
,
a
,
b
)
# Testing bytes of different lengths
# Testing bytes of different lengths
a
,
b
=
b"foobar"
,
b"foo"
a
,
b
=
b"foobar"
,
b"foo"
...
@@ -339,6 +335,81 @@ class CompareDigestTestCase(unittest.TestCase):
...
@@ -339,6 +335,81 @@ class CompareDigestTestCase(unittest.TestCase):
a
,
b
=
b"
\
xde
\
xad
\
xbe
\
xef
"
,
b"
\
xde
\
xad
\
xbe
\
xef
"
a
,
b
=
b"
\
xde
\
xad
\
xbe
\
xef
"
,
b"
\
xde
\
xad
\
xbe
\
xef
"
self
.
assertTrue
(
hmac
.
compare_digest
(
a
,
b
))
self
.
assertTrue
(
hmac
.
compare_digest
(
a
,
b
))
# Testing bytearrays of same lengths, same values
a
,
b
=
bytearray
(
b"foobar"
),
bytearray
(
b"foobar"
)
self
.
assertTrue
(
hmac
.
compare_digest
(
a
,
b
))
# Testing bytearrays of diffeent lengths
a
,
b
=
bytearray
(
b"foobar"
),
bytearray
(
b"foo"
)
self
.
assertFalse
(
hmac
.
compare_digest
(
a
,
b
))
# Testing bytearrays of same lengths, different values
a
,
b
=
bytearray
(
b"foobar"
),
bytearray
(
b"foobaz"
)
self
.
assertFalse
(
hmac
.
compare_digest
(
a
,
b
))
# Testing byte and bytearray of same lengths, same values
a
,
b
=
bytearray
(
b"foobar"
),
b"foobar"
self
.
assertTrue
(
hmac
.
compare_digest
(
a
,
b
))
self
.
assertTrue
(
hmac
.
compare_digest
(
b
,
a
))
# Testing byte bytearray of diffeent lengths
a
,
b
=
bytearray
(
b"foobar"
),
b"foo"
self
.
assertFalse
(
hmac
.
compare_digest
(
a
,
b
))
self
.
assertFalse
(
hmac
.
compare_digest
(
b
,
a
))
# Testing byte and bytearray of same lengths, different values
a
,
b
=
bytearray
(
b"foobar"
),
b"foobaz"
self
.
assertFalse
(
hmac
.
compare_digest
(
a
,
b
))
self
.
assertFalse
(
hmac
.
compare_digest
(
b
,
a
))
# Testing str of same lengths
a
,
b
=
"foobar"
,
"foobar"
self
.
assertTrue
(
hmac
.
compare_digest
(
a
,
b
))
# Testing str of diffeent lengths
a
,
b
=
"foo"
,
"foobar"
self
.
assertFalse
(
hmac
.
compare_digest
(
a
,
b
))
# Testing bytes of same lengths, different values
a
,
b
=
"foobar"
,
"foobaz"
self
.
assertFalse
(
hmac
.
compare_digest
(
a
,
b
))
# Testing error cases
a
,
b
=
"foobar"
,
b"foobar"
self
.
assertRaises
(
TypeError
,
hmac
.
compare_digest
,
a
,
b
)
a
,
b
=
b"foobar"
,
"foobar"
self
.
assertRaises
(
TypeError
,
hmac
.
compare_digest
,
a
,
b
)
a
,
b
=
b"foobar"
,
1
self
.
assertRaises
(
TypeError
,
hmac
.
compare_digest
,
a
,
b
)
a
,
b
=
100
,
200
self
.
assertRaises
(
TypeError
,
hmac
.
compare_digest
,
a
,
b
)
a
,
b
=
"fooä"
,
"fooä"
self
.
assertRaises
(
TypeError
,
hmac
.
compare_digest
,
a
,
b
)
# subclasses are supported by ignore __eq__
class
mystr
(
str
):
def
__eq__
(
self
,
other
):
return
False
a
,
b
=
mystr
(
"foobar"
),
mystr
(
"foobar"
)
self
.
assertTrue
(
hmac
.
compare_digest
(
a
,
b
))
a
,
b
=
mystr
(
"foobar"
),
"foobar"
self
.
assertTrue
(
hmac
.
compare_digest
(
a
,
b
))
a
,
b
=
mystr
(
"foobar"
),
mystr
(
"foobaz"
)
self
.
assertFalse
(
hmac
.
compare_digest
(
a
,
b
))
class
mybytes
(
bytes
):
def
__eq__
(
self
,
other
):
return
False
a
,
b
=
mybytes
(
b"foobar"
),
mybytes
(
b"foobar"
)
self
.
assertTrue
(
hmac
.
compare_digest
(
a
,
b
))
a
,
b
=
mybytes
(
b"foobar"
),
b"foobar"
self
.
assertTrue
(
hmac
.
compare_digest
(
a
,
b
))
a
,
b
=
mybytes
(
b"foobar"
),
mybytes
(
b"foobaz"
)
self
.
assertFalse
(
hmac
.
compare_digest
(
a
,
b
))
def
test_main
():
def
test_main
():
support
.
run_unittest
(
support
.
run_unittest
(
TestVectorsTestCase
,
TestVectorsTestCase
,
...
...
Misc/NEWS
View file @
368c3093
...
@@ -10,6 +10,10 @@ What's New in Python 3.3.0 Beta 1?
...
@@ -10,6 +10,10 @@ What's New in Python 3.3.0 Beta 1?
Core and Builtins
Core and Builtins
-----------------
-----------------
- Issue #15061: Re-implemented hmac.compare_digest() in C to prevent further
timing analysis and to support all buffer protocol aware objects as well as
ASCII only str instances safely.
- Issue #14815: Use Py_ssize_t instead of long for the object hash, to
- Issue #14815: Use Py_ssize_t instead of long for the object hash, to
preserve all 64 bits of hash on Win64.
preserve all 64 bits of hash on Win64.
...
...
Modules/operator.c
View file @
368c3093
...
@@ -159,6 +159,146 @@ is_not(PyObject *s, PyObject *a)
...
@@ -159,6 +159,146 @@ is_not(PyObject *s, PyObject *a)
#undef spam2
#undef spam2
#undef spam1o
#undef spam1o
#undef spam1o
#undef spam1o
/* compare_digest **********************************************************/
/*
* timing safe compare
*
* Returns 1 of the strings are equal.
* In case of len(a) != len(b) the function tries to keep the timing
* dependent on the length of b. CPU cache locally may still alter timing
* a bit.
*/
static
int
_tscmp
(
const
unsigned
char
*
a
,
const
unsigned
char
*
b
,
Py_ssize_t
len_a
,
Py_ssize_t
len_b
)
{
/* The volatile type declarations make sure that the compiler has no
* chance to optimize and fold the code in any way that may change
* the timing.
*/
volatile
Py_ssize_t
length
;
volatile
const
unsigned
char
*
left
;
volatile
const
unsigned
char
*
right
;
Py_ssize_t
i
;
unsigned
char
result
;
/* loop count depends on length of b */
length
=
len_b
;
left
=
NULL
;
right
=
b
;
/* don't use else here to keep the amount of CPU instructions constant,
* volatile forces re-evaluation
* */
if
(
len_a
==
length
)
{
left
=
*
((
volatile
const
unsigned
char
**
)
&
a
);
result
=
0
;
}
if
(
len_a
!=
length
)
{
left
=
b
;
result
=
1
;
}
for
(
i
=
0
;
i
<
length
;
i
++
)
{
result
|=
*
left
++
^
*
right
++
;
}
return
(
result
==
0
);
}
PyDoc_STRVAR
(
compare_digest__doc__
,
"compare_digest(a, b) -> bool
\n
"
"
\n
"
"Return the equivalent of 'a == b', but avoid any short circuiting to
\n
"
"counterfeit timing analysis of input data. The function should be used to
\n
"
"compare cryptographic secrets. a and b must both either support the buffer
\n
"
"protocol (e.g. bytes) or be ASCII only str instances at the same time.
\n
"
"
\n
"
"Note: In case of an error or different lengths the function may disclose
\n
"
"some timing information about the types and lengths of a and b.
\n
"
);
static
PyObject
*
compare_digest
(
PyObject
*
self
,
PyObject
*
args
)
{
PyObject
*
a
,
*
b
;
int
rc
;
PyObject
*
result
;
if
(
!
PyArg_ParseTuple
(
args
,
"OO:compare_digest"
,
&
a
,
&
b
))
{
return
NULL
;
}
/* ASCII unicode string */
if
(
PyUnicode_Check
(
a
)
&&
PyUnicode_Check
(
b
))
{
if
(
PyUnicode_READY
(
a
)
==
-
1
||
PyUnicode_READY
(
b
)
==
-
1
)
{
return
NULL
;
}
if
(
!
PyUnicode_IS_ASCII
(
a
)
||
!
PyUnicode_IS_ASCII
(
b
))
{
PyErr_SetString
(
PyExc_TypeError
,
"comparing strings with non-ASCII characters is "
"not supported"
);
return
NULL
;
}
rc
=
_tscmp
(
PyUnicode_DATA
(
a
),
PyUnicode_DATA
(
b
),
PyUnicode_GET_LENGTH
(
a
),
PyUnicode_GET_LENGTH
(
b
));
}
/* fallback to buffer interface for bytes, bytesarray and other */
else
{
Py_buffer
view_a
;
Py_buffer
view_b
;
if
((
PyObject_CheckBuffer
(
a
)
==
0
)
&
(
PyObject_CheckBuffer
(
b
)
==
0
))
{
PyErr_Format
(
PyExc_TypeError
,
"unsupported operand types(s) or combination of types: "
"'%.100s' and '%.100s'"
,
Py_TYPE
(
a
)
->
tp_name
,
Py_TYPE
(
b
)
->
tp_name
);
return
NULL
;
}
if
(
PyObject_GetBuffer
(
a
,
&
view_a
,
PyBUF_SIMPLE
)
==
-
1
)
{
return
NULL
;
}
if
(
view_a
.
ndim
>
1
)
{
PyErr_SetString
(
PyExc_BufferError
,
"Buffer must be single dimension"
);
PyBuffer_Release
(
&
view_a
);
return
NULL
;
}
if
(
PyObject_GetBuffer
(
b
,
&
view_b
,
PyBUF_SIMPLE
)
==
-
1
)
{
PyBuffer_Release
(
&
view_a
);
return
NULL
;
}
if
(
view_b
.
ndim
>
1
)
{
PyErr_SetString
(
PyExc_BufferError
,
"Buffer must be single dimension"
);
PyBuffer_Release
(
&
view_a
);
PyBuffer_Release
(
&
view_b
);
return
NULL
;
}
rc
=
_tscmp
((
const
unsigned
char
*
)
view_a
.
buf
,
(
const
unsigned
char
*
)
view_b
.
buf
,
view_a
.
len
,
view_b
.
len
);
PyBuffer_Release
(
&
view_a
);
PyBuffer_Release
(
&
view_b
);
}
result
=
PyBool_FromLong
(
rc
);
Py_INCREF
(
result
);
return
result
;
}
/* operator methods **********************************************************/
#define spam1(OP,DOC) {#OP, OP, METH_VARARGS, PyDoc_STR(DOC)},
#define spam1(OP,DOC) {#OP, OP, METH_VARARGS, PyDoc_STR(DOC)},
#define spam2(OP,ALTOP,DOC) {#OP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)}, \
#define spam2(OP,ALTOP,DOC) {#OP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)}, \
{#ALTOP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)},
{#ALTOP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)},
...
@@ -227,6 +367,8 @@ spam2(ne,__ne__, "ne(a, b) -- Same as a!=b.")
...
@@ -227,6 +367,8 @@ spam2(ne,__ne__, "ne(a, b) -- Same as a!=b.")
spam2
(
gt
,
__gt__
,
"gt(a, b) -- Same as a>b."
)
spam2
(
gt
,
__gt__
,
"gt(a, b) -- Same as a>b."
)
spam2
(
ge
,
__ge__
,
"ge(a, b) -- Same as a>=b."
)
spam2
(
ge
,
__ge__
,
"ge(a, b) -- Same as a>=b."
)
{
"_compare_digest"
,
(
PyCFunction
)
compare_digest
,
METH_VARARGS
,
compare_digest__doc__
},
{
NULL
,
NULL
}
/* sentinel */
{
NULL
,
NULL
}
/* sentinel */
};
};
...
...
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