mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/openssl/ossl_cipher.c, ext/openssl/lib/openssl/cipher.rb:
Documentation fix by Ippei Obayashi. See #4419. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32176 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
15e7e472e6
commit
c102821291
3 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Jun 20 18:46:02 2011 Hiroshi Nakamura <nahi@ruby-lang.org>
|
||||
|
||||
* ext/openssl/ossl_cipher.c, ext/openssl/lib/openssl/cipher.rb:
|
||||
Documentation fix by Ippei Obayashi. See #4419.
|
||||
|
||||
Mon Jun 20 15:41:33 2011 Hiroshi Nakamura <nahi@ruby-lang.org>
|
||||
|
||||
* lib/webrick/cookie.rb (WEBrick::Cookie.parse): Revert r31228.
|
||||
|
|
|
@ -53,7 +53,7 @@ module OpenSSL
|
|||
return str
|
||||
end
|
||||
|
||||
# This class is only provided for backwards compatibility. Use OpenSSL::Digest in the future.
|
||||
# This class is only provided for backwards compatibility. Use OpenSSL::Cipher in the future.
|
||||
class Cipher < Cipher
|
||||
# add warning
|
||||
end
|
||||
|
|
|
@ -444,7 +444,7 @@ ossl_cipher_set_iv(VALUE self, VALUE iv)
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* cipher.key_length = integer -> integer
|
||||
* cipher.key_len = integer -> integer
|
||||
*
|
||||
* Sets the key length of the cipher. If the cipher is a fixed length cipher then attempting to set the key
|
||||
* length to any value other than the fixed value is an error.
|
||||
|
@ -507,13 +507,13 @@ CIPHER_0ARG_INT(block_size)
|
|||
#if 0
|
||||
/*
|
||||
* call-seq:
|
||||
* cipher.key_length -> integer
|
||||
* cipher.key_len -> integer
|
||||
*
|
||||
*/
|
||||
static VALUE ossl_cipher_key_length() { }
|
||||
/*
|
||||
* call-seq:
|
||||
* cipher.iv_length -> integer
|
||||
* cipher.iv_len -> integer
|
||||
*
|
||||
*/
|
||||
static VALUE ossl_cipher_iv_length() { }
|
||||
|
|
Loading…
Add table
Reference in a new issue