starkware-libs / crypto-cpp

Apache License 2.0
31 stars 32 forks source link

Can I use this library on Java? #3

Open fastener opened 2 years ago

fastener commented 2 years ago

Is this library used to generate stark signatures?

andre77 commented 2 years ago

@fastener also looking for a library to generate STARK signatures did you find any way around it ?

Solpatium commented 2 years ago

You can check https://github.com/software-mansion/starknet-jvm :)

fercp commented 1 year ago

@andre77 @fastener check this one for pure java implementation https://github.com/fercp/starkex

Cevedale commented 10 months ago

Yes, you can use the StarkEx library with Java! StarkEx is a protocol for scalable and secure off-chain computation. While the library might be initially designed with a specific language in mind, you can often use it with other languages, including Java, through various methods.

One common approach is to use a library or tool that facilitates interoperability between languages, such as Java's native interface (JNI) for calling functions written in other languages like C or C++. If the StarkEx library provides a C or C++ interface, you can create a Java wrapper using JNI to make the functionality accessible from Java.

Keep in mind that you may need to check the documentation of the StarkEx library for any specific recommendations or available interfaces for Java integration. Additionally, consider looking for community-supported wrappers or projects that provide Java bindings for the StarkEx library