| Modifier and Type | Field and Description |
|---|---|
SealedBox.PublicKey |
SealedBox.KeyPair.publicKey |
| Modifier and Type | Method and Description |
|---|---|
static net.openhft.chronicle.bytes.BytesStore |
SealedBox.decrypt(net.openhft.chronicle.bytes.BytesStore result,
net.openhft.chronicle.bytes.BytesStore ciphertext,
SealedBox.PublicKey publicKey,
SealedBox.SecretKey secretKey)
As above, but result BytesStore is passed in first arg
|
static net.openhft.chronicle.bytes.BytesStore |
SealedBox.decrypt(net.openhft.chronicle.bytes.BytesStore ciphertext,
SealedBox.PublicKey publicKey,
SealedBox.SecretKey secretKey)
Decrypt a message given own (receiver's) public and secret keys
|
static net.openhft.chronicle.bytes.BytesStore |
SealedBox.encrypt(net.openhft.chronicle.bytes.BytesStore result,
net.openhft.chronicle.bytes.BytesStore message,
SealedBox.PublicKey publicKey)
As above, but result BytesStore is passed in first arg
|
static net.openhft.chronicle.bytes.BytesStore |
SealedBox.encrypt(net.openhft.chronicle.bytes.BytesStore message,
SealedBox.PublicKey publicKey)
Anonymously encrypt a message given a receivers public key
|
Copyright © 2019. All rights reserved.