検索

phrase: max: clip:
target: order:
Results of 141 - 150 of about 372 for private (0.014 sec.)
PKCS#12 互換の証明書保存ファイルを変数にエクスポートする 4476
« openssl_pkcs12_export_to_file openssl_pkcs12_read » PHP Manual OpenSSL 関数 PKCS#12 互換の証明 ... ymmetricKey | OpenSSLCertificate | array | string $private_key , string $passphrase , array $options = [] ): ... ut 成功した場合に、ここに PKCS#12 が保存されます。 private_key PKCS#12 ファイルのプライベートキーコンポーネン ... ト。 正しい値の一覧については、 Public/Private Key parameters を参照してください。 passphrase PKC ... X.509 CSR 型のリソースを受け入れていました。 8.0.0 private_key は、 OpenSSLAsymmetricKey または OpenSSLCertif ...
https://man.plustar.jp/php/function.openssl-pkcs12-export.html - [similar]
ReflectionProperty クラス 4441
« ReflectionParameter::__toString ReflectionProperty::__clone » PHP Manual リフレクション Reflec ... IC = 1 ; const int IS_PROTECTED = 2 ; const int IS_PRIVATE = 4 ; /* プロパティ */ public string $ name ; publ ... ruct ( object | string $class , string $property ) private __clone (): void public static export ( mixed $cla ... ialized ( ? object $object = null ): bool public isPrivate (): bool public isPromoted (): bool public isProte ... ンでは、この値は 512 でした。 ReflectionProperty::IS_PRIVATE private プロパティを示します。 PHP 7.4.0 より前のバ ...
https://man.plustar.jp/php/class.reflectionproperty.html - [similar]
CSR を文字列としてエクスポートする 4441
« openssl_csr_export_to_file openssl_csr_get_public_key » PHP Manual OpenSSL 関数 CSR を文字列と ... bject = array( "commonName" => "example.com" , ); $private_key = openssl_pkey_new (array( "private_key_bits" ... => 2048 , "private_key_type" => OPENSSL_KEYTYPE_RSA , )); $configargs ... ncryption' ); $csr = openssl_csr_new ( $subject , $private_key , $configargs ); openssl_csr_export ( $csr , $ ...
https://man.plustar.jp/php/function.openssl-csr-export.html - [similar]
CSR の公開鍵を返す 4441
« openssl_csr_export openssl_csr_get_subject » PHP Manual OpenSSL 関数 CSR の公開鍵を返す openss ... bject = array( "commonName" => "example.com" , ); $private_key = openssl_pkey_new (array( "private_key_bits" ... => 2048 , "private_key_type" => OPENSSL_KEYTYPE_RSA , )); $csr = open ... ssl_csr_new ( $subject , $private_key , array( 'digest_alg' => 'sha256' ) ); $public ...
https://man.plustar.jp/php/function.openssl-csr-get-public-key.html - [similar]
ReflectionClassConstant クラス 4379
« ReflectionClass::__toString ReflectionClassConstant::__construct » PHP Manual リフレクション R ... IC = 1 ; const int IS_PROTECTED = 2 ; const int IS_PRIVATE = 4 ; /* プロパティ */ public string $ name ; publ ... etValue (): mixed public isFinal (): bool public isPrivate (): bool public isProtected (): bool public isPubl ... 、この値は 512 でした。 ReflectionClassConstant::IS_PRIVATE アクセス権が private であることを示します。 PHP 7. ... final かどうかを調べる ReflectionClassConstant::isPrivate — クラス定数がprivateかを調べる ReflectionClassCon ...
https://man.plustar.jp/php/class.reflectionclassconstant.html - [similar]
ReflectionMethod クラス 4379
« ReflectionFunctionAbstract::__toString ReflectionMethod::__construct » PHP Manual リフレクショ ... IC = 1 ; const int IS_PROTECTED = 2 ; const int IS_PRIVATE = 4 ; const int IS_ABSTRACT = 64 ; const int IS_FI ... structor (): bool public isFinal (): bool public isPrivate (): bool public isProtected (): bool public isPubl ... ublic __toString (): string /* 継承したメソッド */ private ReflectionFunctionAbstract::__clone (): void publi ... ョンでは、この値は 512 でした。 ReflectionMethod::IS_PRIVATE メソッドが private であることを示します。 PHP 7.4. ...
https://man.plustar.jp/php/class.reflectionmethod.html - [similar]
CSRに他の証明書(あるいは自分自身)で署名して証明書を作成する 4379
« openssl_csr_new openssl_decrypt » PHP Manual OpenSSL 関数 CSRに他の証明書(あるいは自分自身)で ... ymmetricKey | OpenSSLCertificate | array | string $private_key , int $days , ? array $options = null , int $s ... ate が null の場合は、自己署名の証明書となります。 private_key private_key は ca_certificate に対応する秘密鍵 ... SSL X.509 型のリソースを受け入れていました。 8.0.0 private_key は、 OpenSSLAsymmetricKey または OpenSSLCertif ... icate , ca , certificate , 他 , バージョン , key , private , リソース ...
https://man.plustar.jp/php/function.openssl-csr-sign.html - [similar]
オブジェクトとの違い 4379
« 定数式における列挙型の値 値のリスト » PHP Manual 列挙型(Enum) オブジェクトとの違い オブジェクト ... し、 他のオブジェクトと同じ振る舞いをします: public, private, protected メソッド public, private, protected な ... static メソッド public, private, protected な定数 列挙型は、任意の数のインターフェ ... ェクト , case , 定数 , メソッド , マジック , 継承 , private , public , インスタンス , protected ...
https://man.plustar.jp/php/language.enumerations.object-differences.html - [similar]
ReflectionProperty オブジェクトを作成する 4379
« ReflectionProperty::__clone ReflectionProperty::export » PHP Manual ReflectionProperty Reflect ... property 調べたいプロパティの名前。 エラー / 例外 private あるいは protected なプロパティの値を取得あるいは設 ... $prop -> isPublic () ? ' public' : '' , $prop -> isPrivate () ? ' private' : '' , $prop -> isProtected () ? ' ... > int(10) } 例2 ReflectionProperty クラスを用いた、private および protected プロパティの値の取得 <?php class ... Foo { public $x = 1 ; protected $y = 2 ; private $z = 3 ; } $obj = new Foo ; $prop = new Reflection ...
https://man.plustar.jp/php/reflectionproperty.construct.html - [similar]
有効な証明書の格納場所を検索する 4344
« openssl_free_key openssl_get_cipher_methods » PHP Manual OpenSSL 関数 有効な証明書の格納場所を ... rt_dir_env"]=> string(12) "SSL_CERT_DIR" ["default_private_dir"]=> string(20) "/usr/lib/ssl/private" ["defaul ... 場所 , string , 検索 , default , locations , usr , private ...
https://man.plustar.jp/php/function.openssl-get-cert-locations.html - [similar]