aboutsummaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl_hmac.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/openssl/ossl_hmac.c')
-rw-r--r--ext/openssl/ossl_hmac.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/openssl/ossl_hmac.c b/ext/openssl/ossl_hmac.c
index c86831bc..b093841a 100644
--- a/ext/openssl/ossl_hmac.c
+++ b/ext/openssl/ossl_hmac.c
@@ -141,7 +141,6 @@ ossl_hmac_copy(VALUE self, VALUE other)
* #=> 5b9a8038a65d571076d97fe783989e52278a492a
* instance.update(second_chunk)
* #=> de7c9b85b8b78aa6bc8a7a36f70a90701c9db4d9
- *
*/
static VALUE
ossl_hmac_update(VALUE self, VALUE data)
@@ -266,7 +265,6 @@ ossl_hmac_reset(VALUE self)
* data = "The quick brown fox jumps over the lazy dog"
* hmac = OpenSSL::HMAC.digest("SHA1", "key", data)
* #=> "\xDE|\x9B\x85\xB8\xB7\x8A\xA6\xBC\x8Az6\xF7\n\x90p\x1C\x9D\xB4\xD9"
- *
*/
static VALUE
ossl_hmac_s_digest(VALUE klass, VALUE digest, VALUE key, VALUE data)
@@ -294,10 +292,8 @@ ossl_hmac_s_digest(VALUE klass, VALUE digest, VALUE key, VALUE data)
* === Example
*
* data = "The quick brown fox jumps over the lazy dog"
- *
* hmac = OpenSSL::HMAC.hexdigest("SHA1", "key", data)
* #=> "de7c9b85b8b78aa6bc8a7a36f70a90701c9db4d9"
- *
*/
static VALUE
ossl_hmac_s_hexdigest(VALUE klass, VALUE digest, VALUE key, VALUE data)