Merge pull request #1736 from jonatack/2024-12-bip374-make-python-files-executable

BIP374: update reference.py and secp256k1.py to be executable
This commit is contained in:
Jon Atack 2025-01-01 16:04:57 -08:00 committed by GitHub
commit b15a0a1aa9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

2
bip-0374/reference.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
"""Reference implementation of DLEQ BIP for secp256k1 with unit tests."""
from hashlib import sha256

2
bip-0374/secp256k1.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
# Copyright (c) 2022-2023 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.