cryptape / ruby-bitcoin-secp256k1

Ruby binding to bitcoin's secp256k1 implementation.
MIT License
29 stars 15 forks source link

Research: static link libsecp256k1 #6

Open ashchan opened 5 years ago

ashchan commented 5 years ago

Embed C module (example: unicorn) instead of using external libsecp26bk1 using ffi.

ashchan commented 5 years ago

@classicalliu Any thoughts? Interested to give it a try?

classicalliu commented 5 years ago

@ashchan Means building native extensions while installing? I'll have a try

ashchan commented 5 years ago

@ashchan Means building native extensions while installing? I'll have a try

Right. Such that the gem doesn't depend on the dynamic linked secp256k1 on the OS. @xxuejie is this understanding correct?