2024-09-05 15:18:33 +08:00
2024-09-04 09:58:38 +08:00
2025-04-01 13:51:29 +08:00
2025-04-01 13:51:55 +08:00
2025-04-01 13:51:55 +08:00
2025-04-01 13:51:29 +08:00
2024-09-05 10:16:46 +08:00
2025-04-01 13:51:29 +08:00
2025-04-01 13:51:29 +08:00

ecc_rs

a simple rust implementation of SM2 binding for python.
powered by pyo3.

useage

import ecc_rs

point = tuple[int, int]
# Example point coordinates for P1 and P2 as tuples (x1, y1) and (x2, y2)
p1 = (
    1234567890123456789012345678901234567890123456789012345678901234,
    9876543210987654321098765432109876543210987654321098765432109876,
)
p2 = (
    2234567890123456789012345678901234567890123456789012345678901234,
    2876543210987654321098765432109876543210987654321098765432109876,
)

# Add the two points
result_x, result_y = ecc_rs.add(p1, p2)
print(f"Resulting Point: x = {result_x}, y = {result_y}")


result = ecc_rs.multiply(p1, 2)
print(f"Resulting Point: x = {result[0]}, y = {result[1]}")

Description
No description provided
Readme 64 KiB
Languages
Rust 50.2%
Python 49.8%