Algorand Puya RSA Signature Verification: RFC8017 RSASSA-PKCS1-V1.5-VERIFY function implementation
Project description
Puya RSA
Algorand Puya RSA RFC8017 RSASSA-PKCS1-V1.5-VERIFY function implementation. Intended to allow on-chain verification of RSA signatures seen in practice (e.g. JWT signatures), compliant with the Public Key Cryptography Standard v1.5. See RFC Section 8.2.2.
⚠️ Not officially production ready until documentation updated to indicate otherwise. Use at your own risk.
Features
- Supports up to
1024 bytes(8192 bits) long modulus - RSASSA-PKCS1-V1.5-VERIFY function implementation
Install
Puya RSA is available on PyPI:
pip install puya-rsa
Usage
All inputs to math functions are assumed to be big-endian encoded numbers unless explicitly stated otherwise.
from puya_rsa import (
pkcs1_v15_verify
)
# ... pkcs1_v15_verify(msg_digest_info, signature, public_modulus, exponent, barrett_reduction_factor)
The pkcs1_v15_verify function arguments are as follows:
msg_digest_infois a message digest with an identifier of the hashing function prependedsignatureis the signature used to sign the messagepublic_modulusis the public RSA key (modulus)exponentis the exponent used to generate the RSA key (typically2**16)barrett_reduction_factoris a precomputed factor according to the Barrett Reduction algorithm, which depends on the public key modulus. This must be calculated on-chain and proven (e.g. in contract state) to be trustless, otherwise it would act as a magic number. SeePuya BigNumber.
Develop
This module uses poetry as the package manager and Python environment manager. Please see How to Build and Publish Python Packages With Poetry.
Test
poetry run pytest -v
License & Contribution
Contributions and additions are welcomed. Please respect the terms of the GNU GPL v3 license. Attribution for the author Winton Nathan-Roberts is required. No warranties or liabilities per the license. It is not yet officially production ready, although it is thoroughly tested.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file puya_rsa-0.2.0.tar.gz.
File metadata
- Download URL: puya_rsa-0.2.0.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.14 Linux/6.10.9-350.vanilla.fc40.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5900266ce5d9a02bb0f837d2a77e75ae50d79b87b89712bf2156c23527792eec
|
|
| MD5 |
adae009b2e77bcda4aa481652da2d45c
|
|
| BLAKE2b-256 |
355aea782ba403f8e1ed5f57574bc83e69b1296fa86d44b32dd8e8f185d5b0e2
|
File details
Details for the file puya_rsa-0.2.0-py3-none-any.whl.
File metadata
- Download URL: puya_rsa-0.2.0-py3-none-any.whl
- Upload date:
- Size: 15.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.14 Linux/6.10.9-350.vanilla.fc40.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9f1b40900132ddc8eff011d7270681b1654394d74fbddd72925073f2f842003
|
|
| MD5 |
af10b149f7b532c0674d571a35507f84
|
|
| BLAKE2b-256 |
41a096e29aad27f95592f04dd6851e05510afb46f54d1623c18532a59154bb45
|