diff options
author | Jack Lloyd <[email protected]> | 2018-02-22 09:51:56 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-02-22 09:51:56 -0500 |
commit | 901eb327fb9989abe7b8327b2f691bff7221cea6 (patch) | |
tree | 7cf3f0107a1f95a5e6fb1b9ba298c3f48c09ae20 /doc | |
parent | 061182a46f8b9e42808d57ec7bbafc13db7cf809 (diff) |
Fix missing semicolon in pubkey example [ci skip]
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/pubkey.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/pubkey.rst b/doc/manual/pubkey.rst index f6bbca412..17ebea231 100644 --- a/doc/manual/pubkey.rst +++ b/doc/manual/pubkey.rst @@ -722,7 +722,7 @@ applies the key derivation function KDF2(SHA-256) with 256 bit output length to int main() { - Botan::AutoSeeded_RNG rng + Botan::AutoSeeded_RNG rng; // ec domain and Botan::EC_Group domain("secp521r1"); std::string kdf = "KDF2(SHA-256)"; |