mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/openssl/test_pkey_rsa.rb: Add tests for sign/verify.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31640 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7f7fef1813
commit
1fae66fca2
2 changed files with 35 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Thu May 19 07:47:26 2011 Martin Bosslet <Martin.Bosslet@googlemail.com>
|
||||||
|
|
||||||
|
* test/openssl/test_pkey_rsa.rb: Add tests for sign/verify.
|
||||||
|
|
||||||
Thu May 19 07:19:16 2011 Martin Bosslet <Martin.Bosslet@googlemail.com>
|
Thu May 19 07:19:16 2011 Martin Bosslet <Martin.Bosslet@googlemail.com>
|
||||||
|
|
||||||
* ext/openssl/ossl_pkey.c: Add documentation.
|
* ext/openssl/ossl_pkey.c: Add documentation.
|
||||||
|
|
|
@ -48,6 +48,37 @@ class OpenSSL::TestPKeyRSA < Test::Unit::TestCase
|
||||||
assert_equal([], OpenSSL.errors)
|
assert_equal([], OpenSSL.errors)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_sign_verify
|
||||||
|
key = OpenSSL::PKey::RSA.new(512)
|
||||||
|
digest = OpenSSL::Digest::SHA1.new
|
||||||
|
data = 'Sign me!'
|
||||||
|
sig = key.sign(digest, data)
|
||||||
|
assert(key.verify(digest, sig, data))
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_digest_state_irrelevant_sign
|
||||||
|
key = OpenSSL::PKey::RSA.new(512)
|
||||||
|
digest1 = OpenSSL::Digest::SHA1.new
|
||||||
|
digest2 = OpenSSL::Digest::SHA1.new
|
||||||
|
data = 'Sign me!'
|
||||||
|
digest1 << 'Change state of digest1'
|
||||||
|
sig1 = key.sign(digest1, data)
|
||||||
|
sig2 = key.sign(digest2, data)
|
||||||
|
assert_equal(sig1, sig2)
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_digest_state_irrelevant_verify
|
||||||
|
key = OpenSSL::PKey::RSA.new(512)
|
||||||
|
digest1 = OpenSSL::Digest::SHA1.new
|
||||||
|
digest2 = OpenSSL::Digest::SHA1.new
|
||||||
|
data = 'Sign me!'
|
||||||
|
sig = key.sign(digest1, data)
|
||||||
|
digest1.reset
|
||||||
|
digest1 << 'Change state of digest1'
|
||||||
|
assert(key.verify(digest1, sig, data))
|
||||||
|
assert(key.verify(digest2, sig, data))
|
||||||
|
end
|
||||||
|
|
||||||
def test_read_RSAPublicKey
|
def test_read_RSAPublicKey
|
||||||
modulus = 10664264882656732240315063514678024569492171560814833397008094754351396057398262071307709191731289492697968568138092052265293364132872019762410446076526351
|
modulus = 10664264882656732240315063514678024569492171560814833397008094754351396057398262071307709191731289492697968568138092052265293364132872019762410446076526351
|
||||||
exponent = 65537
|
exponent = 65537
|
||||||
|
|
Loading…
Reference in a new issue