Uses of Class
com.github.katenachain.crypto.Nacl.PublicKey
-
Packages that use PublicKey Package Description com.github.katenachain com.github.katenachain.crypto.Nacl com.github.katenachain.entity.certify com.github.katenachain.utils -
-
Uses of PublicKey in com.github.katenachain
Methods in com.github.katenachain with parameters of type PublicKey Modifier and Type Method Description SendTxResultTransactor. sendSecretNaclBoxV1Tx(String id, PublicKey sender, byte[] nonce, byte[] content)creates a SecretNaclBox (V1) and sends it to the API. -
Uses of PublicKey in com.github.katenachain.crypto.Nacl
Methods in com.github.katenachain.crypto.Nacl that return PublicKey Modifier and Type Method Description PublicKeyPrivateKey. getPublicKey()Methods in com.github.katenachain.crypto.Nacl with parameters of type PublicKey Modifier and Type Method Description byte[]PrivateKey. open(byte[] encryptedMessage, PublicKey senderPublicKey, byte[] nonce)decrypts an encrypted message with the appropriate sender information.Hashtable<String,byte[]>PrivateKey. seal(byte[] message, PublicKey recipientPublicKey)encrypts a plain text message decipherable afterwards by the recipient private key. -
Uses of PublicKey in com.github.katenachain.entity.certify
Methods in com.github.katenachain.entity.certify that return PublicKey Modifier and Type Method Description PublicKeySecretNaclBoxV1. getSender()Constructors in com.github.katenachain.entity.certify with parameters of type PublicKey Constructor Description SecretNaclBoxV1(byte[] content, String id, byte[] nonce, PublicKey sender)SecretNaclBoxV1 constructor. -
Uses of PublicKey in com.github.katenachain.utils
Methods in com.github.katenachain.utils that return PublicKey Modifier and Type Method Description static PublicKeyCrypto. createPublicKeyX25519FromBase64(String publicKeyBase64)accepts a base64 encoded X25519 public key (44 chars) and returns an X25519 public key.
-