summaryrefslogtreecommitdiff
path: root/openssl/src/pkey.rs
diff options
context:
space:
mode:
authorAnsley Peduru <ansleypeduru96@gmail.com>2018-01-24 09:53:28 -0500
committerAnsley Peduru <ansleypeduru96@gmail.com>2018-01-24 09:53:28 -0500
commitd3169a565e26258bedd99337045e263ead675d5d (patch)
treeb9964e7d899584fde354c19102628ef77957e5c8 /openssl/src/pkey.rs
parent6552a9cbfda31680684edf6b5e309d10dd9fa6ed (diff)
downloadrust-openssl-d3169a565e26258bedd99337045e263ead675d5d.zip
Add HMAC to Pkey docs
Diffstat (limited to 'openssl/src/pkey.rs')
-rw-r--r--openssl/src/pkey.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/openssl/src/pkey.rs b/openssl/src/pkey.rs
index 9f100075..8f7c4e4e 100644
--- a/openssl/src/pkey.rs
+++ b/openssl/src/pkey.rs
@@ -7,7 +7,7 @@
//! encrypt information using a user's public key. The encrypted information can
//! only be deciphered using that user's private key.
//!
-//! This module offers support for four popular algorithms:
+//! This module offers support for five popular algorithms:
//!
//! * RSA
//!
@@ -17,6 +17,8 @@
//!
//! * Elliptic Curves
//!
+//! * HMAC
+//!
//! These algorithms rely on hard mathematical problems - namely integer factorization,
//! discrete logarithms, and elliptic curve relationships - that currently do not
//! yield efficient solutions. This property ensures the security of these