Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ key pair generation. Other operations or attack vectors may also be vulnerable t
For a sophisticated attacker observing just one operation with a private key will be sufficient
to completely reconstruct the private key.

Fixes for side-channel vulerabilities will not be developed.
Fixes for side-channel vulnerabilities will not be developed.

Please also note that any Pure-python cryptographic library will be vulnerable to the same
side-channel attacks. This is because Python does not provide side-channel secure primitives
Expand Down
2 changes: 1 addition & 1 deletion docs/source/glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Glossary
``str`` (only on python2), ``bytes``, ``bytearray``, ``array.array``
and ``memoryview`` of those objects.
Please note that ``array.array`` serialisation (converting it to byte
string) is endianess dependant! Signature computed over ``array.array``
string) is endianness dependent! Signature computed over ``array.array``
of integers on a big-endian system will not be verified on a
little-endian system and vice-versa.

Expand Down
2 changes: 1 addition & 1 deletion src/ecdsa/curves.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ def curve_by_name(name):
"""Select a curve based on its name.

Returns a :py:class:`~ecdsa.curves.Curve` object with a ``name`` name.
Note that ``name`` is case-sensitve.
Note that ``name`` is case-sensitive.

:param str name: Name of the curve to return, like ``NIST256p`` or
``prime256v1``
Expand Down