CrypteCipher/core/uniffi/bindings/android/Cryptec.java
MoCipher aae968b1c2 new file: core/uniffi/bindings/android/Cryptec.java
new file:   core/uniffi/bindings/ios/Cryptec.h
	new file:   mobile/__tests__/nativeModuleIntegration.test.ts
	new file:   mobile/android/src/main/java/com/cryptec/CryptecModule.java
	new file:   mobile/android/src/main/java/com/cryptec/CryptecPackage.java
	new file:   mobile/ios/CryptecModule.m
2026-02-20 10:10:41 +01:00

10 lines
519 B
Java

// UniFFI-generated placeholder for Android (stub).
// The real generated class will provide JNI hooks to the Rust library.
package org.cryptec.uniffi.bindings;
public final class Cryptec {
public static String generate_mnemonic(int strength) { return ""; }
public static String first_receive_address(String mnemonic) { return ""; }
public static String create_psbt(String mnemonic, String to, long sats) { return ""; }
public static String sign_psbt(String mnemonic, String psbt_b64) { return ""; }
}