1274件ヒット
[1201-1274件を表示]
(0.066秒)
ライブラリ
- ビルトイン (6)
-
net
/ http (36) -
net
/ imap (36) -
net
/ pop (36) -
net
/ smtp (32) - open-uri (24)
- openssl (864)
-
rubygems
/ security (168) -
rubygems
/ validator (24) -
webrick
/ ssl (24)
クラス
-
Gem
:: Security :: Policy (108) -
Gem
:: Validator (24) -
Net
:: HTTP (36) -
Net
:: IMAP (36) -
Net
:: POP3 (36) -
Net
:: SMTP (32) -
OpenSSL
:: Netscape :: SPKI (24) -
OpenSSL
:: OCSP :: BasicResponse (12) -
OpenSSL
:: OCSP :: Request (12) -
OpenSSL
:: PKCS7 (84) -
OpenSSL
:: PKey :: DSA (12) -
OpenSSL
:: PKey :: EC (24) -
OpenSSL
:: PKey :: PKey (12) -
OpenSSL
:: SSL :: SSLContext (84) -
OpenSSL
:: SSL :: SSLSocket (60) -
OpenSSL
:: X509 :: CRL (12) -
OpenSSL
:: X509 :: Certificate (12) -
OpenSSL
:: X509 :: Request (24) -
OpenSSL
:: X509 :: Store (108) -
OpenSSL
:: X509 :: StoreContext (96) -
WEBrick
:: GenericServer (12)
モジュール
- GC (6)
-
Gem
:: Security (60) -
OpenSSL
:: OCSP (12) -
OpenSSL
:: SSL (48) -
OpenSSL
:: X509 (120) - OpenURI (24)
-
WEBrick
:: Config (12)
キーワード
- AlmostNoSecurity (12)
- DH (12)
- DSA (12)
- HighSecurity (12)
- LowSecurity (12)
- MediumSecurity (12)
- NOCHAIN (12)
- NOINTERN (12)
- NOSIGS (12)
- NOVERIFY (24)
- NoSecurity (12)
- OCSP (12)
- PKey (12)
-
PURPOSE
_ CRL _ SIGN (12) -
PURPOSE
_ NS _ SSL _ SERVER (12) -
PURPOSE
_ OCSP _ HELPER (12) -
PURPOSE
_ SMIME _ ENCRYPT (12) -
PURPOSE
_ SMIME _ SIGN (12) -
PURPOSE
_ SSL _ CLIENT (12) -
PURPOSE
_ SSL _ SERVER (12) - RSA (12)
- SSL (12)
- SSLContext (12)
- SSLSocket (12)
- StoreContext (12)
- TEXT (12)
-
VERIFY
_ CLIENT _ ONCE (12) -
VERIFY
_ FAIL _ IF _ NO _ PEER _ CERT (12) -
VERIFY
_ NONE (12) -
VERIFY
_ PEER (12) -
V
_ ERR _ APPLICATION _ VERIFICATION (12) -
V
_ ERR _ CERT _ CHAIN _ TOO _ LONG (12) -
V
_ ERR _ UNABLE _ TO _ VERIFY _ LEAF _ SIGNATURE (12) - X509 (12)
- accept (12)
-
accept
_ nonblock (12) - chain (24)
- connect (12)
-
connect
_ nonblock (12) -
current
_ cert (12) -
current
_ crl (12) -
drb
/ ssl (12) -
dsa
_ sign _ asn1 (12) -
dsa
_ verify _ asn1 (12) -
enable
_ ssl (24) - error (24)
- error= (12)
-
error
_ depth (12) -
error
_ string (36) - flags= (12)
- new (24)
-
open
_ uri (24) - purpose= (12)
-
rubygems
/ security (12) -
set
_ params (12) - sign (24)
- start (32)
- starttls (24)
- sysverify (12)
-
verify
_ callback (36) -
verify
_ callback= (36) -
verify
_ chain (12) -
verify
_ chain= (12) -
verify
_ compaction _ references (6) -
verify
_ data (12) -
verify
_ data= (12) -
verify
_ depth (12) -
verify
_ depth= (12) -
verify
_ gem (24) -
verify
_ gem _ file (12) -
verify
_ mode (24) -
verify
_ mode= (12) -
verify
_ result (12) -
verify
_ root (12) -
verify
_ root= (12) -
verify
_ signer (12) -
verify
_ signer= (12)
検索結果
先頭5件
- Gem
:: Security :: HighSecurity -> Gem :: Security :: Policy - Gem
:: Security :: MediumSecurity -> Gem :: Security :: Policy - Gem
:: Security :: NoSecurity -> Gem :: Security :: Policy - OpenURI
. open _ uri(name , mode = & # 39;r& # 39; , perm = nil , options = {}) -> StringIO - OpenURI
. open _ uri(name , mode = & # 39;r& # 39; , perm = nil , options = {}) {|sio| . . . } -> nil
-
Gem
:: Security :: HighSecurity -> Gem :: Security :: Policy (124.0) -
高レベルのセキュリティポリシーです。
...頼します。
このセキュリティポリシーはバイパスするのがものすごく困難です。
:verify_data => true,
:verify_signer => true,
:verify_chain => true,
:verify_root => true,
:only_trusted => true,
:only_signed => true... -
Gem
:: Security :: MediumSecurity -> Gem :: Security :: Policy (124.0) -
中レベルのセキュリティポリシーです。
...悪な人物がパッケージの署名を単純に削除して検証をパスさせることができます。
:verify_data => true,
:verify_signer => true,
:verify_chain => true,
:verify_root => true,
:only_trusted => true,
:only_signed => false... -
Gem
:: Security :: NoSecurity -> Gem :: Security :: Policy (124.0) -
セキュリティなしのポリシーです。
...セキュリティなしのポリシーです。
全ての検証を行いません。
:verify_data => false,
:verify_signer => false,
:verify_chain => false,
:verify_root => false,
:only_trusted => false,
:only_signed => false... -
OpenURI
. open _ uri(name , mode = & # 39;r& # 39; , perm = nil , options = {}) -> StringIO (118.0) -
URI である文字列 name のリソースを取得して StringIO オブジェクト として返します。
...します。ブロックの終了時に StringIO は close されます。nil を返します。
require 'open-uri'
sio = OpenURI.open_uri('http://www.example.com')
p sio.last_modified
puts sio.read
OpenURI.open_uri('http://www.example.com'){|sio| sio.read }
options には Hash を与......シンボル、
* :proxy
* :progress_proc
* :content_length_proc
* :http_basic_authentication
* :proxy_http_basic_authentication
* :read_timeout
* :ssl_ca_cert
* :ssl_verify_mode
* :ftp_active_mode
* :redirect
です。
「:content_length_proc」と「:progress_proc」はプログレスバ......('http://www.example.com',
{ :proxy => 'http://proxy.example.com:8000/',
:http_basic_authentication => [username, password] })
: :proxy
プロクシの設定をします。
値には以下のいずれかを与えます。
//emlist{
文字列:... -
OpenURI
. open _ uri(name , mode = & # 39;r& # 39; , perm = nil , options = {}) {|sio| . . . } -> nil (118.0) -
URI である文字列 name のリソースを取得して StringIO オブジェクト として返します。
...します。ブロックの終了時に StringIO は close されます。nil を返します。
require 'open-uri'
sio = OpenURI.open_uri('http://www.example.com')
p sio.last_modified
puts sio.read
OpenURI.open_uri('http://www.example.com'){|sio| sio.read }
options には Hash を与......シンボル、
* :proxy
* :progress_proc
* :content_length_proc
* :http_basic_authentication
* :proxy_http_basic_authentication
* :read_timeout
* :ssl_ca_cert
* :ssl_verify_mode
* :ftp_active_mode
* :redirect
です。
「:content_length_proc」と「:progress_proc」はプログレスバ......('http://www.example.com',
{ :proxy => 'http://proxy.example.com:8000/',
:http_basic_authentication => [username, password] })
: :proxy
プロクシの設定をします。
値には以下のいずれかを与えます。
//emlist{
文字列:... -
WEBrick
:: GenericServer . new(config = {} , default = WEBrick :: Config :: General) -> WEBrick :: GenericServer (106.0) -
GenericServer オブジェクトを生成して返します。
...SSL/#{osslv}",
:SSLEnable => true, # Ruby 1.8.3 以降では false がデフォルトです。
:SSLCertificate => nil,
:SSLPrivateKey => nil,
:SSLClientCA => nil,
:SSLExtraChainCert => nil,
:SSLCACertificateFile => nil,
:SSLCACertificatePath => nil,......:SSLCertificateStore => nil,
:SSLVerifyClient => ::OpenSSL::SSL::VERIFY_NONE,
:SSLVerifyDepth => nil,
:SSLVerifyCallback => nil, # custom verification
:SSLTimeout => nil,
:SSLOptions => nil,
:SSLStartImmediately => true,
# Must specify if you use......auto generated certificate.
:SSLCertName => nil,
:SSLCertComment => "Generated by Ruby/OpenSSL"
@param config サーバの設定を保存したハッシュを指定します。
@param default サーバのデフォルトの設定を保存したハッシュを指定します。... -
rubygems
/ security (18.0) -
このライブラリは暗号署名を RubyGems パッケージに使用するために使用します。
...めに使用します。
=== 署名付きの Gem パッケージ
==== 目次
* 概要
* 解説
* コマンドラインオプション
* OpenSSL リファレンス
* Bugs / TODO
* 作者について
==== 概要
このライブラリは暗号署名を RubyGems パッケージに使用する......のコマンドを実行するとそれらを作成することができます。
# gemmaster@example.com のための秘密鍵と証明書を作成します
$ gem cert --build gemmaster@example.com
あなたのコンピュータの性能にもよりますが、これには 5 秒から 10 分......と、なんだ。これは?
Attempting local installation of 'Imlib2-Ruby-0.5.0.gem'
ERROR: Error installing gem Imlib2-Ruby-0.5.0.gem[.gem]: Couldn't
verify data signature: Untrusted Signing Chain Root: cert =
'/CN=gemmaster/DC=example/DC=com', error = 'path
"/root/.rubygems/tru...