Here you come with the example of how to use this function.
if( $csr = openssl_csr_new( array(
"countryName"=>"PL",
"stateOrProvinceName" => "blah",
"organizationName" => "company ltd",
"commonName"=>"foo.bar.com",
"Email"=>"blah@foo.bar.com"), $privkey )
)
{
openssl_csr_export_to_file( $csr, "out.csr");
}
else
{
printf("failed\n");
}
Keep in mind that keys are case sensitive (i.e. give "email" instead of "Email" and you get warning). Also remember it's important to keep the order of the arguments in array. Move the "Email" above commonName and check what you get (in case you don't know how: "openssl req -noout -text -in out.csr").
It also happened to me me I got segfault when order was rubbish (afair Email after countryName, or plenty Email's here and there), so be awared.
openssl_csr_export
(PHP 4 >= 4.2.0, PHP 5)
openssl_csr_export — CSR を文字列としてエクスポートする
説明
bool openssl_csr_export
( resource $csr
, string &$out
[, bool $notext = true
] )
openssl_csr_export() は、Certificate Signing Request csr を受け取り、 それを out に ASCII テキストとして保存します。 このパラメータは参照で渡されます。
パラメータ
- csr
-
- out
-
- notext
-
オプションのパラメータ notext を設定すると、出力内容の冗長性が変化します。FALSE を指定すると、 人間が読むための追加情報が出力に含まれるようになります。 notext のデフォルト値は TRUE です。
返り値
成功した場合に TRUE を、失敗した場合に FALSE を返します。
参考
- openssl_csr_export_to_file() - CSR をファイルにエクスポートする
- openssl_csr_new() - CSR を作成する
- openssl_csr_sign() - 他の CERT(あるいは自分自身)で証明書をサインする
openssl_csr_export
carlos AT wfmh DOT org DOT pl
27-Jun-2002 02:44
27-Jun-2002 02:44
