In Files

  • openssl/lib/openssl/cipher.rb
  • openssl/ossl.c

Namespace

Methods

Class/Module Index [+]

Quicksearch

OpenSSL::Cipher

Public Class Methods

ciphers() click to toggle source
 
               static VALUE
ossl_s_ciphers(VALUE self)
{
#ifdef HAVE_OBJ_NAME_DO_ALL_SORTED
    VALUE ary;

    ary = rb_ary_new();
    OBJ_NAME_do_all_sorted(OBJ_NAME_TYPE_CIPHER_METH,
                    (void(*)(const OBJ_NAME*,void*))add_cipher_name_to_ary,
                    (void*)ary);

    return ary;
#else
    rb_notimplement();
#endif
}