crypto-cpp icon indicating copy to clipboard operation
crypto-cpp copied to clipboard

Can I use this library on Java?

Open fastener opened this issue 4 years ago • 4 comments

Is this library used to generate stark signatures?

fastener avatar Sep 16 '21 11:09 fastener

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

andre77 avatar Jun 02 '22 10:06 andre77

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

Solpatium avatar Aug 15 '22 06:08 Solpatium

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

fercp avatar Oct 30 '22 12:10 fercp

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

Cevedale avatar Oct 27 '23 17:10 Cevedale