diff options
author | Bart de Water <[email protected]> | 2024-03-15 11:05:20 -0400 |
---|---|---|
committer | git <[email protected]> | 2024-04-30 15:05:50 +0000 |
commit | 9d75d9f07ce1d7ac5a75d787c5acff2aa11e99c9 (patch) | |
tree | 1fea5d64b91aa1f82190af0207c0d6745a1d194b /ext/openssl | |
parent | cc6657e563298e6c5ce50af3d107a60791b723af (diff) |
[ruby/openssl] Update Cipher#name to match Digest#name explanation
https://github.com/ruby/openssl/commit/79e6dead6e
Diffstat (limited to 'ext/openssl')
-rw-r--r-- | ext/openssl/ossl_cipher.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/openssl/ossl_cipher.c b/ext/openssl/ossl_cipher.c index 110610e1f9..1910a5cdee 100644 --- a/ext/openssl/ossl_cipher.c +++ b/ext/openssl/ossl_cipher.c @@ -442,8 +442,8 @@ ossl_cipher_final(VALUE self) * call-seq: * cipher.name -> string * - * Returns the name of the cipher which may differ slightly from the original - * name provided. + * Returns the short name of the cipher which may differ slightly from the + * original name provided. */ static VALUE ossl_cipher_name(VALUE self) |