NethermindEth / cairo-vm-go

A virtual machine for Cairo written in Go
MIT License
82 stars 49 forks source link

Signature hints integration test #467

Closed Sh0g0-1758 closed 3 months ago

Sh0g0-1758 commented 3 months ago

This PR aims to do the tasks mentioned here : #413

Current Progress :

Signatures (ECDSA & SEC_P)

EC

NOTE : PRIME = 2^251 + 17 X 2^192 + 1 = 3618502788666131213697322783095070105623107215331596699973092056135872020481 BASE = 2^86 = 77371252455336267181195264 SECP_P = 2^256 - 2^32 - 2^9 - 2^8 - 2^7 - 2^6 - 2^4 - 1 = 115792089237316195423570985008687907853269984665640564039457584007908834671663

TAdev0 commented 3 months ago

@Sh0g0-1758 also need to move cairo files to the right folder

Sh0g0-1758 commented 3 months ago

@TAdev0 , done.

TAdev0 commented 3 months ago

great !