diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ext/digest/lib/digest/hmac.rb | 7 |
2 files changed, 13 insertions, 0 deletions
@@ -1,3 +1,9 @@ +Thu Jun 3 23:34:55 2010 Akinori MUSHA <[email protected]> + + * ext/digest/lib/digest/hmac.rb: Emit a deprecation warning in + verbose mode and add a caution to the overview section of the + document. [ruby-dev:41525] + Thu Jun 3 19:33:51 2010 Nobuyoshi Nakada <[email protected]> * ext/dl/cfunc.c (rb_dlcfunc_inspect): suppress warnings by diff --git a/ext/digest/lib/digest/hmac.rb b/ext/digest/lib/digest/hmac.rb index 1948352c4b..98f98a69cf 100644 --- a/ext/digest/lib/digest/hmac.rb +++ b/ext/digest/lib/digest/hmac.rb @@ -4,6 +4,11 @@ # # == Overview # +# CAUTION: Use of this library is discouraged, because this +# implementation was meant to be experimental but somehow got into the +# 1.9 series without being noticed. Please use OpenSSL::HMAC in the +# "openssl" library instead. +# # This library adds a method named hmac() to Digest classes, which # creates a Digest class for calculating HMAC digests. # @@ -36,6 +41,8 @@ # $Id$ # +warn "use of the experimetal library 'digest/hmac' is discouraged; require 'openssl' and use OpenSSL::HMAC instead." if $VERBOSE + require 'digest' module Digest |