mirror of
https://github.com/ruby/ruby.git
synced 2025-08-28 15:36:16 +02:00
* string.c (rb_str_crypt): Raise ArgumentError when
string passed to String#crypt contains null. the patch is from jrusnack <jrusnack at redhat.com>. [Bug #10988] [fix GH-853] * test/ruby/test_string.rb: test for above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50458 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d908180164
commit
f64ac5d4cd
3 changed files with 11 additions and 2 deletions
|
@ -507,6 +507,7 @@ class TestString < Test::Unit::TestCase
|
|||
assert_raise(ArgumentError) {S("mypassword").crypt(S(""))}
|
||||
assert_raise(ArgumentError) {S("mypassword").crypt(S("\0a"))}
|
||||
assert_raise(ArgumentError) {S("mypassword").crypt(S("a\0"))}
|
||||
assert_raise(ArgumentError) {S("poison\u0000null").crypt(S("aa"))}
|
||||
[Encoding::UTF_16BE, Encoding::UTF_16LE,
|
||||
Encoding::UTF_32BE, Encoding::UTF_32LE].each do |enc|
|
||||
assert_raise(ArgumentError) {S("mypassword").crypt(S("aa".encode(enc)))}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue