Results of 1 - 10 of about 40 for cert (0.002 sec.)
- 有効な証明書の格納場所を検索する 15227
- « openssl_free_key openssl_get_cipher_methods » PHP Manual OpenSSL 関数 有効な証明書の格納場所を
...
検索する openssl_get_cert_locations (PHP 5 >= 5.6.0, PHP 7, PHP 8) openssl_g ...
et_cert_locations — 有効な証明書の格納場所を検索する 説明 ...
openssl_get_cert_locations (): array openssl_get_cert_locations() は ...
明書の格納場所の配列を返します。 例 例1 openssl_get_cert_locations() の例 <?php var_dump ( openssl_get_cert ...
-
https://man.plustar.jp/php/function.openssl-get-cert-locations.html
- [similar]
- PKCS#12 認証ストアをパースして配列形式にする 10593
- « openssl_pkcs12_export openssl_pkcs7_decrypt » PHP Manual OpenSSL 関数 PKCS#12 認証ストアをパー
...
説明 openssl_pkcs12_read ( string $pkcs12 , array &$certificates , string $passphrase ): bool openssl_pkcs1 ...
、 pkcs12 で指定した PKCS#12 認証ストアをパースして certificates で指定した配列に格納します。 パラメータ pk ...
cs12 認証ストアの内容。ファイル名ではありません。 certificates 成功した場合に、ここに認証ストアデータが格 ...
す。 例 例1 openssl_pkcs12_read() の例 <?php if (! $cert_store = file_get_contents ( "/certs/file.p12" )) { ...
-
https://man.plustar.jp/php/function.openssl-pkcs12-read.html
- [similar]
- PHP 5.6.x における OpenSSL 関連の変更 10079
- « 新しい関数 その他の拡張モジュールに対する変更 » PHP Manual PHP 5.5.x から PHP 5.6.x への移行 P
...
に二つのオプションが追加されました。 capture_peer_cert はピアの X.509 証明書を取り込み、 peer_fingerprint ...
生成したものです。 openssl dhparam -out /path/to/my/certs/dh-2048.pem 2048 single_dh_use true にすると、Dif ...
nt ( 'tlsv1.2://google.com:443/' ); ?> openssl_get_cert_locations() の追加 openssl_get_cert_locations() 関 ...
ルトの場所を返します。 <?php var_dump ( openssl_get_cert_locations ()); ?> 上の例の出力は以下となります。 a ...
-
https://man.plustar.jp/php/migration56.openssl.html
- [similar]
- 例 9813
- « リソース型 Event flags » PHP Manual Event 例 例 例1 Simple HTTP client <?php // Read callback
...
.0.1:9998,verify=1,cafile=examples/ssl-echo-server/cert.pem */ class MySslEchoServer { public $port , $bas ...
n EventSslContext // Optionally create self-signed certificates function init_ssl () { // We *must* have e ...
xit( "EventUtil::sslRandPoll failed\n" ); } $local_cert = __DIR__ . "/cert.pem" ; $local_pk = __DIR__ . "/ ...
privkey.pem" ; if (! file_exists ( $local_cert ) || ! file_exists ( $local_pk )) { echo "Couldn't ...
-
https://man.plustar.jp/php/event.examples.html
- [similar]
- データをシール(暗号化)する 9298
- « openssl_random_pseudo_bytes openssl_sign » PHP Manual OpenSSL 関数 データをシール(暗号化)する
...
する $fp = fopen ( "/src/openssl-0.9.6/demos/maurice/cert.pem" , "r" ); $cert = fread ( $fp , 8192 ); fclose ...
( $fp ); $pk1 = openssl_get_publickey ( $cert ); // 2 番目の受信者についても同様 $fp = fopen ( " ...
/src/openssl-0.9.6/demos/sign/cert.pem" , "r" ); $cert = fread ( $fp , 8192 ); fclose ...
( $fp ); $pk2 = openssl_get_publickey ( $cert ); // メッセージを暗号化。$pk1 および $pk2 の所有者 ...
-
https://man.plustar.jp/php/function.openssl-seal.html
- [similar]
- Constructor for the SolrClient object 8924
- « SolrClient::commit SolrClient::deleteById » PHP Manual SolrClient Constructor for the SolrClie
...
a transfer operation. Default is 30 seconds) - ssl_cert (File name to a PEM-formatted file containing the ...
private key + private certificate (concatenated in that order) ) - ssl_key (F ...
- ssl_cainfo (Name of file holding one or more CA certificates to verify peer with) - ssl_capath (Name of ...
directory holding multiple CA certificates to verify peer with ) Please note the if t ...
-
https://man.plustar.jp/php/solrclient.construct.html
- [similar]
- SSL コンテキストオプションの一覧 8846
- « FTP コンテキストオプション CURL コンテキストオプション » PHP Manual コンテキストオプションとパ
...
ディレクトリを正確に指している必要があります。 local_cert string ファイルシステム上のローカル証明書ファイルの ...
上のプライベートキーファイルの場所。 証明書 ( local_cert ) とプライベートキーを別のファイルに分けたい場合に ...
用います。 passphrase string local_cert ファイルをエンコードした際の パスフレーズ。 verify ...
ください。 デフォルトは DEFAULT です。 capture_peer_cert bool true に設定すると、 peer_certificate コンテキ ...
-
https://man.plustar.jp/php/context.ssl.html
- [similar]
- RSA 証明書を設定する 8784
- « OAuth::setRequestEngine OAuth::setSSLChecks » PHP Manual OAuth RSA 証明書を設定する OAuth::set
...
RSACertificate (PECL OAuth >= 1.0.0) OAuth::setRSACertific ...
te — RSA 証明書を設定する 説明 public OAuth::setRSACertificate ( string $cert ): mixed RSA 証明書を設定しま ...
ん。引数のリストのみが 記述されています。 パラメータ cert RSA 証明書。 戻り値 成功した場合に true 、失敗した ...
ではなく null を返していました。 例 例1 OAuth::setRsaCertificate() の例 <?php $consume = new OAuth ( '1234' ...
-
https://man.plustar.jp/php/oauth.setrsacertificate.html
- [similar]
- The EventSslContext class 8534
- « EventListener::setErrorCallback EventSslContext::__construct » PHP Manual Event The EventSslCo
...
st int TLS_SERVER_METHOD = 8 ; const int OPT_LOCAL_CERT = 1 ; const int OPT_LOCAL_PK = 2 ; const int OPT_P ...
PHERS = 9 ; /* プロパティ */ public string $ local_cert ; public string $ local_pk ; /* メソッド */ public ...
ing $method , string $options ) } プロパティ local_cert Path to local certificate file on filesystem. It m ...
ust be a PEM-encoded file which contains certificate. It can optionally contain the certificate ...
-
https://man.plustar.jp/php/class.eventsslcontext.html
- [similar]
- Create a new SSL buffer event to send its data over another buffer event 8472
- « EventBufferEvent::sslError EventBufferEvent::sslGetCipherInfo » PHP Manual EventBufferEvent Cr
...
andrewrose dot co dot uk> * * Usage: * 1) Prepare cert.pem certificate and privkey.pem private key files. ...
Lv3_SERVER_METHOD , [ EventSslContext :: OPT_LOCAL_CERT => 'cert.pem' , EventSslContext :: OPT_LOCAL_PK => ...
Y_PEER => false , // change to true with authentic cert EventSslContext :: OPT_ALLOW_SELF_SIGNED => true / ...
/ change to false with authentic cert ]); $this -> base = new EventBase (); if (! $this ...
-
https://man.plustar.jp/php/eventbufferevent.sslfilter.html
- [similar]