diff options
author | Hubert Kario <hkario@redhat.com> | 2023-03-02 16:20:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-02 16:20:45 +0100 |
commit | 2457dc7c9b7337edcb868a323c5b648a32da2b8c (patch) | |
tree | 70df67fabd47999a946451ee2d68a5645d8653d8 /src/ecdsa/test_malformed_sigs.py | |
parent | 31039b4950e1b6be2b41744ce452653ab62c0d10 (diff) | |
parent | 98312f650ed8f5186230a66355f733b043e11b93 (diff) | |
download | ecdsa-master.tar.gz |
More tests and docs
Diffstat (limited to 'src/ecdsa/test_malformed_sigs.py')
-rw-r--r-- | src/ecdsa/test_malformed_sigs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ecdsa/test_malformed_sigs.py b/src/ecdsa/test_malformed_sigs.py index 6db0176..2091237 100644 --- a/src/ecdsa/test_malformed_sigs.py +++ b/src/ecdsa/test_malformed_sigs.py @@ -282,7 +282,7 @@ def st_der(): of a valid DER structure, sequence of valid DER objects or a constructed encoding of any of the above. """ - return st.recursive( + return st.recursive( # pragma: no branch st.just(b"") | st_der_integer(max_value=2**4096) | st_der_bit_string(max_size=1024**2) |