Uses of Class
com.github.katenachain.crypto.ED25519.PublicKey
-
Packages that use PublicKey Package Description com.github.katenachain com.github.katenachain.crypto.ED25519 com.github.katenachain.entity.account 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. sendCertificateEd25519V1Tx(String id, PublicKey signer, byte[] signature)creates a CertificateEd25519 (V1) and sends it to the API.SendTxResultTransactor. sendKeyCreateV1Tx(String id, PublicKey publicKey, String role)creates a KeyCreate (V1) and sends it to the API.SendTxResultTransactor. sendKeyRotateV1Tx(String id, PublicKey publicKey)creates a KeyRotate (V1) and sends it to the API. -
Uses of PublicKey in com.github.katenachain.crypto.ED25519
Methods in com.github.katenachain.crypto.ED25519 that return PublicKey Modifier and Type Method Description PublicKeyPrivateKey. getPublicKey() -
Uses of PublicKey in com.github.katenachain.entity.account
Methods in com.github.katenachain.entity.account that return PublicKey Modifier and Type Method Description PublicKeyKeyCreateV1. getPublicKey()PublicKeyKeyRotateV1. getPublicKey()PublicKeyKeyV1. getPublicKey()Constructors in com.github.katenachain.entity.account with parameters of type PublicKey Constructor Description KeyCreateV1(String id, PublicKey publicKey, String role)KeyCreateV1 constructor.KeyRotateV1(String id, PublicKey publicKey)KeyCreateV1 constructor. -
Uses of PublicKey in com.github.katenachain.entity.certify
Methods in com.github.katenachain.entity.certify that return PublicKey Modifier and Type Method Description PublicKeyCertificateEd25519V1. getSigner()Constructors in com.github.katenachain.entity.certify with parameters of type PublicKey Constructor Description CertificateEd25519V1(String id, PublicKey signer, byte[] signature)CertificateEd25519V1 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. createPublicKeyEd25519FromBase64(String publicKeyBase64)accepts a base64 encoded Ed25519 public key (44 chars) and returns an Ed25519 public key.
-