Uses of Class
com.exonum.binding.common.crypto.KeyPair
-
Packages that use KeyPair Package Description com.exonum.binding.common.crypto com.exonum.binding.common.message com.exonum.binding.testkit -
-
Uses of KeyPair in com.exonum.binding.common.crypto
Methods in com.exonum.binding.common.crypto that return KeyPair Modifier and Type Method Description static KeyPair
KeyPair. createKeyPair(byte[] privateKey, byte[] publicKey)
Creates aKeyPair
from two byte arrays, representingprivateKey
andpublicKey
.KeyPair
CryptoFunction. generateKeyPair()
Generates a private key and a corresponding public key using a random seed.KeyPair
CryptoFunction. generateKeyPair(byte[] seed)
Generates a private key and a corresponding public key using aseed
byte array.KeyPair
Ed25519CryptoFunction. generateKeyPair()
KeyPair
Ed25519CryptoFunction. generateKeyPair(byte[] seed)
-
Uses of KeyPair in com.exonum.binding.common.message
Methods in com.exonum.binding.common.message with parameters of type KeyPair Modifier and Type Method Description TransactionMessage
TransactionMessage.Builder. sign(KeyPair keys, CryptoFunction crypto)
Signs the message, creating a new signed binary transaction message. -
Uses of KeyPair in com.exonum.binding.testkit
Methods in com.exonum.binding.testkit that return KeyPair Modifier and Type Method Description KeyPair
EmulatedNode. getServiceKeyPair()
Returns a service key pair of this node.Constructors in com.exonum.binding.testkit with parameters of type KeyPair Constructor Description EmulatedNode(int validatorId, KeyPair serviceKeyPair)
Creates a context of an emulated node.
-