mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
c8cb26252a
* ext/openssl/ossl_x509cert.c (ossl_x509_verify): X509_verify() family may put errors on 0 return (0 means verification failure). Clear OpenSSL error queue before return to Ruby. Since the queue is thread global, remaining errors in the queue can cause an unexpected error in the next OpenSSL operation. [ruby-core:48284] [Bug #7215] * ext/openssl/ossl_x509crl.c (ossl_x509crl_verify): ditto. * ext/openssl/ossl_x509req.c (ossl_x509req_verify): ditto. * ext/openssl/ossl_x509store.c (ossl_x509stctx_verify): ditto. * ext/openssl/ossl_pkey_dh.c (dh_generate): clear the OpenSSL error queue before re-raising exception. * ext/openssl/ossl_pkey_dsa.c (dsa_generate): ditto. * ext/openssl/ossl_pkey_rsa.c (rsa_generate): ditto. * ext/openssl/ossl_ssl.c (ossl_start_ssl): ditto. * test/openssl: check that OpenSSL.errors is empty every time after running a test case. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55051 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
39 lines
1.3 KiB
Ruby
39 lines
1.3 KiB
Ruby
# coding: UTF-8
|
|
# frozen_string_literal: false
|
|
|
|
require_relative 'utils'
|
|
|
|
class OpenSSL::TestHMAC < OpenSSL::TestCase
|
|
def setup
|
|
@digest = OpenSSL::Digest::MD5
|
|
@key = "KEY"
|
|
@data = "DATA"
|
|
@h1 = OpenSSL::HMAC.new(@key, @digest.new)
|
|
@h2 = OpenSSL::HMAC.new(@key, "MD5")
|
|
end
|
|
|
|
def test_hmac
|
|
@h1.update(@data)
|
|
@h2.update(@data)
|
|
assert_equal(@h1.digest, @h2.digest)
|
|
|
|
assert_equal(OpenSSL::HMAC.digest(@digest.new, @key, @data), @h1.digest, "digest")
|
|
assert_equal(OpenSSL::HMAC.hexdigest(@digest.new, @key, @data), @h1.hexdigest, "hexdigest")
|
|
|
|
assert_equal(OpenSSL::HMAC.digest("MD5", @key, @data), @h2.digest, "digest")
|
|
assert_equal(OpenSSL::HMAC.hexdigest("MD5", @key, @data), @h2.hexdigest, "hexdigest")
|
|
end
|
|
|
|
def test_dup
|
|
@h1.update(@data)
|
|
h = @h1.dup
|
|
assert_equal(@h1.digest, h.digest, "dup digest")
|
|
end
|
|
|
|
def test_binary_update
|
|
data = "Lücíllé: Bût... yøü sáîd hé wås âlrîght.\nDr. Físhmån: Yés. Hé's løst hîs léft hånd, sø hé's gøîng tø bé åll rîght"
|
|
hmac = OpenSSL::HMAC.new("qShkcwN92rsM9nHfdnP4ugcVU2iI7iM/trovs01ZWok", "SHA256")
|
|
result = hmac.update(data).hexdigest
|
|
assert_equal "a13984b929a07912e4e21c5720876a8e150d6f67f854437206e7f86547248396", result
|
|
end
|
|
end if defined?(OpenSSL::TestUtils)
|