aboutsummaryrefslogtreecommitdiffstats
path: root/doc/manual/pubkey.rst
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2015-12-19 21:13:30 -0500
committerJack Lloyd <[email protected]>2015-12-19 21:13:30 -0500
commit6da5bc56c45c7151f64f65cba93d4fa7ef0a574a (patch)
tree1406fb29971dd400f41d919c9ddb2a301f5df19d /doc/manual/pubkey.rst
parent4ff6700e33a3da6dd711fb614c80ac672796330e (diff)
Remove references to deleted examples GH #339
Diffstat (limited to 'doc/manual/pubkey.rst')
-rw-r--r--doc/manual/pubkey.rst19
1 files changed, 0 insertions, 19 deletions
diff --git a/doc/manual/pubkey.rst b/doc/manual/pubkey.rst
index dc8645404..fdce35853 100644
--- a/doc/manual/pubkey.rst
+++ b/doc/manual/pubkey.rst
@@ -83,17 +83,6 @@ ECDH, or GOST 34.10-2001 private key with
.. cpp:function:: GOST_3410_PrivateKey::GOST_3410_PrivateKey(RandomNumberGenerator& rng, \
const EC_Group& domain, const BigInt& x = 0)
-
-Generating RSA keys
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-This example will generate an RSA key of a specified bitlength, and put it
-into a pair of key files. One is the public key in X.509 format (PEM encoded),
-the private key is in PKCS #8 format (also PEM encoded), either encrypted or
-unencrypted depending on if a password was given.
-
-.. literalinclude:: ../../src/cli/keygen.cpp
-
.. _serializing_private_keys:
Serializing Private Keys Using PKCS #8
@@ -478,14 +467,6 @@ Signatures are verified using
on *msg* and then calling :cpp:func:`PK_Verifier::check_signature`
on *sig*.
-Here is an example of DSA signature generation
-
-.. literalinclude:: ../../src/cli/dsa_sign.cpp
-
-Here is an example that verifies DSA signatures
-
-.. literalinclude:: ../../src/cli/dsa_ver.cpp
-
Key Agreement
---------------------------------