An open API service indexing awesome lists of open source software.

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.

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
```