るりまサーチ

最速Rubyリファレンスマニュアル検索!
204件ヒット [1-100件を表示] (0.107秒)

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. dh p=
  5. dsa p

ライブラリ

モジュール

キーワード

検索結果

<< 1 2 3 > >>

URI::LDAP#dn -> String (21118.0)

自身の Distinguished Name を文字列で返します。

...自身の Distinguished Name を文字列で返します。...

OpenSSL::PKCS7::SignerInfo#name -> OpenSSL::X509::Name (18320.0)

署名者の証明書の発行者の名前(DN)を返します。

...署名者の証明書の発行者の名前(DN)を返します。

これと OpenSSL::PKCS7::SignerInfo#serial で
署名者を一意に識別します。...

Resolv::IPv4#to_name -> Resolv::DNS::Name (9303.0)

"x.y.z.w.in-addr.arpa." という形のドメイン名を返します。

..."x.y.z.w.in-addr.arpa." という形のドメイン名を返します。...

Resolv::IPv6#to_name -> Resolv::DNS::Name (9303.0)

"h.g.f.e.d.c.b.a.ip6.arpa." という DNS 名を返します。

..."h.g.f.e.d.c.b.a.ip6.arpa." という DNS 名を返します。...

URI::LDAP#dn=(s) (9124.0)

自身の Distinguished Name を文字列で設定します。

...自身の Distinguished Name を文字列で設定します。

@param s 自身の Distinguished Name を文字列で指定します。...

絞り込み条件を変える

Kernel#check_signedness(type, headers = nil, opts = nil) -> "signed" | "unsigned" | nil (6233.0)

Returns the signedness of the given +type+. You may optionally specify additional +headers+ to search in for the +type+. If the +type+ is found and is a numeric type, a macro is passed as a preprocessor constant to the compiler using the +type+ name, in uppercase, prepended with 'SIGNEDNESS_OF_', followed by the +type+ name, followed by '=X' where 'X' is positive integer if the +type+ is unsigned, or negative integer if the +type+ is signed. For example, if size_t is defined as unsigned, then check_signedness('size_t') would returned +1 and the SIGNEDNESS_OF_SIZE_T=+1 preprocessor macro would be passed to the compiler, and SIGNEDNESS_OF_INT=-1 if check_signedness('int') is done.

...s the signedness of the given +type+. You may optionally
specify additional +headers+ to search in for the +type+.

If the +type+ is found and is a numeric type, a macro is passed as a
p
reprocessor constant to the compiler using the +type+ name, in
uppercase, prepended with 'SIGNEDNESS_OF_', f...
...+type+
name
, followed by '=X' where 'X' is positive integer if the +type+ is
unsigned, or negative integer if the +type+ is signed.

For example, if size_t is defined as unsigned, then
check_signedness('size_t') would returned +1 and the
SIGNEDNESS_OF_SIZE_T=+1 preprocessor macro would be pass...
...ed to the
compiler, and SIGNEDNESS_OF_INT=-1 if check_signedness('int') is
done....

Kernel#check_signedness(type, headers = nil, opts = nil) { ... } -> "signed" | "unsigned" | nil (6233.0)

Returns the signedness of the given +type+. You may optionally specify additional +headers+ to search in for the +type+. If the +type+ is found and is a numeric type, a macro is passed as a preprocessor constant to the compiler using the +type+ name, in uppercase, prepended with 'SIGNEDNESS_OF_', followed by the +type+ name, followed by '=X' where 'X' is positive integer if the +type+ is unsigned, or negative integer if the +type+ is signed. For example, if size_t is defined as unsigned, then check_signedness('size_t') would returned +1 and the SIGNEDNESS_OF_SIZE_T=+1 preprocessor macro would be passed to the compiler, and SIGNEDNESS_OF_INT=-1 if check_signedness('int') is done.

...s the signedness of the given +type+. You may optionally
specify additional +headers+ to search in for the +type+.

If the +type+ is found and is a numeric type, a macro is passed as a
p
reprocessor constant to the compiler using the +type+ name, in
uppercase, prepended with 'SIGNEDNESS_OF_', f...
...+type+
name
, followed by '=X' where 'X' is positive integer if the +type+ is
unsigned, or negative integer if the +type+ is signed.

For example, if size_t is defined as unsigned, then
check_signedness('size_t') would returned +1 and the
SIGNEDNESS_OF_SIZE_T=+1 preprocessor macro would be pass...
...ed to the
compiler, and SIGNEDNESS_OF_INT=-1 if check_signedness('int') is
done....

Resolv::DNS::Name#subdomain_of?(other) -> bool (6079.0)

other が self のサブドメインであるかどうかを返します。

...olv::DNS::Name.create("y.z")
p
Resolv::DNS::Name.create("w.x.y.z").subdomain_of?(domain) #=> true
p
Resolv::DNS::Name.create("x.y.z").subdomain_of?(domain) #=> true
p
Resolv::DNS::Name.create("y.z").subdomain_of?(domain) #=> false
p
Resolv::DNS::Name.create("z").subdomain_of?(domain) #=> false
p
Res...
...olv::DNS::Name.create("x.y.z.").subdomain_of?(domain) #=> false
p
Resolv::DNS::Name.create("w.z").subdomain_of?(domain) #=> false
//}...

OpenSSL::X509::Name#to_s(flags=nil) -> String (6071.0)

DNの文字列表現を返します。

...
DN
の文字列表現を返します。

flags には通常は以下のいずれかを渡します。
* nil
* OpenSSL::X509::Name::COMPAT
* OpenSSL::X509::Name::RFC2253
* OpenSSL::X509::Name::ONELINE
* OpenSSL::X509::Name::MULTILINE

*
例:
require 'openssl'
n = OpenSSL::X509::Name.pa...
...rse('/C=JP/ST=Kanagawa/L=Yokohama/O=Example Company/OU=Lab3/CN=foobar/emailAddress=foobar@lab3.example.co.jp')
n.to_s
# => "/C=JP/ST=Kanagawa/L=Yokohama/O=Example Company/OU=Lab3/CN=foobar/emailAddress=foobar@lab3.example.co.jp"
n.to_s(OpenSSL::X509::Name::COMPAT)
# => "C=JP, ST=Kanagawa, L...
...hama, O=Example Company, OU=Lab3, CN=foobar/emailAddress=foobar@lab3.example.co.jp"
n.to_s(OpenSSL::X509::Name::RFC2253)
# => "emailAddress=foobar@lab3.example.co.jp,CN=foobar,OU=Lab3,O=Example Company,L=Yokohama,ST=Kanagawa,C=JP"
n.to_s(OpenSSL::X509::Name::ONELINE)
# => "C = JP, ST = Kanag...
<< 1 2 3 > >>