You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1, crash because of no tweetnacl lib.
/**
* Loads the TweetNaCl JNI library.
*
*/
static {
System.loadLibrary("tweetnacl");
}
the code no use.
try {
KeyPair keyPair = TweetNaCl.cryptoBoxKeyPair();
byte[] val =keyPair.publicKey;
LogD(bytesToHex(val));
} catch (KeyPairException e) {
e.printStackTrace();
}
the public key no send to server. and private key no save to local.
2, can't connect to server.
I setup the nodejs server, but con't connected and register a new user.
The text was updated successfully, but these errors were encountered:
1, crash because of no tweetnacl lib.
/**
* Loads the TweetNaCl JNI library.
*
*/
static {
System.loadLibrary("tweetnacl");
}
the code no use.
try {
KeyPair keyPair = TweetNaCl.cryptoBoxKeyPair();
byte[] val =keyPair.publicKey;
LogD(bytesToHex(val));
} catch (KeyPairException e) {
e.printStackTrace();
}
the public key no send to server. and private key no save to local.
2, can't connect to server.
I setup the nodejs server, but con't connected and register a new user.
The text was updated successfully, but these errors were encountered: