https://github.com/ocdbytes/secp256k1_bitcoin
This is the cryptography algorithm used in bitcoin to generate public and private keys. Bitcoin uses SECP256k1 C-language library to use this encryption in the Bitcoin operating system.
https://github.com/ocdbytes/secp256k1_bitcoin
bitcoin cryptography rsa-cryptography secp256k1
Last synced: 7 months ago
JSON representation
This is the cryptography algorithm used in bitcoin to generate public and private keys. Bitcoin uses SECP256k1 C-language library to use this encryption in the Bitcoin operating system.
- Host: GitHub
- URL: https://github.com/ocdbytes/secp256k1_bitcoin
- Owner: ocdbytes
- Created: 2023-04-01T14:27:42.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-01T17:06:57.000Z (almost 3 years ago)
- Last Synced: 2024-04-14T10:46:09.932Z (almost 2 years ago)
- Topics: bitcoin, cryptography, rsa-cryptography, secp256k1
- Language: Jupyter Notebook
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SECP256k1_Bitcoin
This is the cryptography algorithm used in bitcoin to generate public and private keys.
Bitcoin uses SECP256k1 C-language library to use this encryption in the Bitcoin operating system.
### Installations
```sh
pip3 install pycryptodome
```
### Imports
```py
from Crypto.Cipher import PKCS1_OAEP
from Crypto.PublicKey import RSA
from binascii import hexlify
```