We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a127819 commit 2dac8eeCopy full SHA for 2dac8ee
src/ecdsa/der.py
@@ -219,7 +219,8 @@ def read_number(string):
219
llen = 0
220
if str_idx_as_int(string, 0) == 0x80:
221
raise UnexpectedDER("Non minimal encoding of OID subidentifier")
222
- # base-128 big endian, with b7 set in all but the last byte
+ # base-128 big endian, with most significant bit set in all but the last
223
+ # byte
224
while True:
225
if llen >= len(string):
226
raise UnexpectedDER("ran out of length bytes")
0 commit comments