< Rebol Programming
USAGE:
DH-COMPUTE-KEY obj public-key
DESCRIPTION:
Computes the resulting, negotiated key from a private/public key pair and the peer's public key.
DH-COMPUTE-KEY is a native value.
ARGUMENTS
- obj -- The DH key object (Type: object)
- public-key -- Peer's public key (Type: binary)
SOURCE CODE
dh-compute-key: native[ {Computes the resulting, negotiated key from a ^- private/public key pair and the peer's public key.} obj [object!] "The DH key object" public-key [binary!] "Peer's public key" ]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.