1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test
gotoyuzo 22ab58c03c * ext/openssl/extconf.rb: check for EVP_CIPHER_CTX_copy, ENGINE_add,
EVP_CIPHER_CTX_set_padding, EVP_CipherFinal_ex, EVP_CipherInit_ex,
  EVP_DigestFinal_ex and EVP_DigestInit_ex.

* ext/openssl/openssl_missing.c (EVP_CIPHER_CTX_copy): new function.

* ext/openssl/openssl_missing.h (EVP_DigestInit_ex, EVP_DigestFinal_ex,
  EVP_CipherInit_ex, EVP_CipherFinal_ex, HMAC_Init_ex): new macro for
  OpenSSL 0.9.6.

* ext/openssl/ossl_cipher.c (ossl_cipher_alloc, ossl_cipher_initialize,
  ossl_cipher_copy, ossl_cipher_reset, ossl_cipher_encrypt,
  ossl_cipher_decrypt, ossl_cipher_final, ossl_cipher_set_key,
  ossl_cipher_set_iv): replace all EVP_CipherInit and
  EVP_CipherFinal into EVP_CipherInit_ex and EVP_CipherFinal_ex.
  and EVP_CIPHER_CTX_init should only be called once.

* ext/openssl/ossl_cipher.c (ossl_cipher_set_padding): check for
  EVP_CIPHER_CTX_set_padding.

* ext/openssl/ossl_cipher.c (Init_ossl_cipher): Cipher#<< is deprecated.

* ext/openssl/ossl_digest.c: replace all EVP_DigestInit and
  EVP_DigestFinal into EVP_DigestInit_ex and EVP_DigestFinal_ex.
  and EVP_MD_CTX_init should only be called once.

* ext/openssl/ossl_digest.c (digest_final): should call
  EVP_MD_CTX_cleanup to avoid memory leak.

* ext/openssl/ossl_hmac.c (ossl_hmac_initialize): repalce HMAC_init
  into HMAC_init_ex. and HMAC_CTX_init is moved to ossl_hmac_alloc.

* ext/openssl/ossl_hmac.c (hmac_final): should call
  HMAC_CTX_cleanup to avoid memory leak.

* test/openssl/test_cipher.rb, test/openssl/test_digest.rb,
  test/openssl/test_hmac.rb: new file.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6548 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-06-30 10:48:43 +00:00
..
csv * test/csv/test_csv.rb: illegal require module name (../lib/csv.rb). 2004-05-27 02:26:15 +00:00
dbm * ext/dbm/dbm.c (fdbm_initialize): accept optional 3rd argument to 2004-05-16 12:03:23 +00:00
digest
drb * test/drb/drbtest.rb, test/soap/calc/test_calc_cgi.rb: restore $: 2004-04-08 11:25:24 +00:00
erb * MANIFEST: add test_erb.rb 2004-02-28 01:52:14 +00:00
fileutils * lib/fileutils.rb (fu_list): Array() breaks pathes including "\n". [ruby-core:02843] 2004-05-07 12:04:19 +00:00
gdbm * ext/dbm/dbm.c (fdbm_initialize): accept optional 3rd argument to 2004-05-16 12:03:23 +00:00
logger
monitor
net/http * lib/net/http.rb: HTTPHeader keeps its header fields as an array. 2004-03-06 20:35:19 +00:00
openssl * ext/openssl/extconf.rb: check for EVP_CIPHER_CTX_copy, ENGINE_add, 2004-06-30 10:48:43 +00:00
optparse
ostruct
rinda check hash tuple size 2004-04-21 14:05:40 +00:00
rss * lib/rss/parser.rb, lib/rss/1.0.rb: accepted rdf:resource or 2004-04-07 03:36:38 +00:00
ruby * test/ruby/test_file.rb (test_fnmatch): some tests for File.fnmatch 2004-06-30 08:02:42 +00:00
scanf Fixed to work with Ruby test suite (patch from Nobu) 2004-03-02 11:21:32 +00:00
soap * test/soap/calc/test_calc_cgi.rb: not parent, parent directory of it. 2004-04-08 11:31:17 +00:00
stringio
strscan * ext/strscan/strscan.c: new method StringScanner#initialize_copy to allow #dup and #clone. 2004-03-05 11:20:12 +00:00
testunit
uri * lib/uri/generic.rb (URI::Generic::merge, 2004-06-09 07:15:56 +00:00
wsdl * test/*: remove $: trick. [ruby-dev:22763] use test/runner.rb to 2004-01-29 13:22:27 +00:00
xsd * test/rss/test_*: do $: trick while searching a module in the current 2004-01-29 02:54:21 +00:00
yaml * ext/syck/MANIFEST, ext/syck/depend: new file. 2004-05-15 04:38:39 +00:00
zlib add test for [ruby-dev:23344]. 2004-04-07 05:06:34 +00:00
inlinetest.rb * test/inlinetest.rb (InlineTest::loadtest): requiring library with 2004-05-19 09:00:48 +00:00
runner.rb * ext/extmk.rb (extmake): skip uncompiled extensions. 2004-04-08 10:45:21 +00:00
test_generator.rb
test_ipaddr.rb
test_pathname.rb
test_pp.rb
test_prettyprint.rb
test_set.rb
test_time.rb
test_tsort.rb