We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SenderPublicKey
String
Hi let's say the key exchange was meant to be conducted by sending String, which is a base64 encoding of the SharedKey, over to the receiver.
SharedKey
receiver
Sender would need the receiver's PublicKey which is sent to the sender through a base64 encoded string.
Sender
PublicKey
sender
However, there is a no method of conversion from SecretKey to PublicKey then to ReceiverPublicKey.
SecretKey
ReceiverPublicKey
How can I get an instance of ReceiverPublicKey to generate CombinedSharedKey as it is done in one of your tests?
CombinedSharedKey
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi let's say the key exchange was meant to be conducted by sending
String
, which is a base64 encoding of theSharedKey
, over to thereceiver
.Sender
would need thereceiver
'sPublicKey
which is sent to thesender
through a base64 encoded string.However, there is a no method of conversion from
SecretKey
toPublicKey
then toReceiverPublicKey
.How can I get an instance of
ReceiverPublicKey
to generateCombinedSharedKey
as it is done in one of your tests?The text was updated successfully, but these errors were encountered: