diff options
author | Ingela Anderton Andin <[email protected]> | 2017-03-31 15:38:53 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2017-04-12 11:01:09 +0200 |
commit | f606520095236e8dabb85564d3e91361e0b57b6e (patch) | |
tree | ce97305c1bb185596d2e018ede24bdeb5e1d254b /lib/public_key/doc/src | |
parent | 4da32ec432dd2dee0b19403bed21a836f1638549 (diff) | |
download | otp-f606520095236e8dabb85564d3e91361e0b57b6e.tar.gz otp-f606520095236e8dabb85564d3e91361e0b57b6e.tar.bz2 otp-f606520095236e8dabb85564d3e91361e0b57b6e.zip |
public_key: Public RSA key is present in private key
Change the return value from {#'RSAPublicKey'{}, #'RSAPrivateKey'{}} to #'RSAPrivateKey'{}
This conforms to the #'ECPrivateKey'{} return value.
Note that DH key will be returned as {Public::integer(), Private::integer()}
as there is no key structure (record) only two integers.
Maybe we would like to add extraction functions for the public key from
the private ones later.
Diffstat (limited to 'lib/public_key/doc/src')
-rw-r--r-- | lib/public_key/doc/src/public_key.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/public_key/doc/src/public_key.xml b/lib/public_key/doc/src/public_key.xml index 2300ce3937..940585575c 100644 --- a/lib/public_key/doc/src/public_key.xml +++ b/lib/public_key/doc/src/public_key.xml @@ -331,14 +331,15 @@ </func> <func> - <name>generate_key(Params) -> {Public::binary(), Private::binary()} | #'ECPrivateKey'{} | {#'RSAPublicKey'{}, #'RSAPrivateKey'{}}</name> + <name>generate_key(Params) -> {Public::binary(), Private::binary()} | #'ECPrivateKey'{} | #'RSAPrivateKey'{}</name> <fsummary>Generates a new keypair.</fsummary> <type> <v>Params = #'DHParameter'{} | {namedCurve, oid()} | #'ECParameters'{} | {rsa, Size::integer(), PubExp::integer} </v> </type> <desc> - <p>Generates a new keypair. See also + <p>Generates a new keypair. Note that except for Diffie-Hellman + the public key is included in the private key structure. See also <seealso marker="crypto:crypto#generate_key/2">crypto:generate_key/2</seealso> </p> </desc> |