Как мне создать файл .p12 в Ruby? - PullRequest
3 голосов
/ 30 апреля 2009

Я посмотрел Ruby OpenSSL документацию , но я не могу понять, какие части мне нужно собрать для создания файла .p12.

Есть также этот урок , но комментарии противоречат его правильности.

1 Ответ

2 голосов
/ 30 апреля 2009

Из ossl_pkcs12.c:

/*
* call-seq:
*    PKCS12.create(pass, name, key, cert [, ca, [, key_pbe [, cert_pbe [, key_iter [, mac_iter [, keytype]]]]]])
*
* === Parameters
* * +pass+ - string
* * +name+ - A string describing the key.
* * +key+ - Any PKey.
* * +cert+ - A X509::Certificate.
* * * The public_key portion of the certificate must contain a valid public key.
* * * The not_before and not_after fields must be filled in.
* * +ca+ - An optional array of X509::Certificate's.
* * +key_pbe+ - string
* * +cert_pbe+ - string
* * +key_iter+ - integer
* * +mac_iter+ - integer
* * +keytype+ - An integer representing an MSIE specific extension.
*
* Any optional arguments may be supplied as nil to preserve the OpenSSL defaults.
*
* See the OpenSSL documentation for PKCS12_create().

* /

Итак (непроверенный и, вероятно, неверный - я не очень знаком с Ruby):

p12 = OpenSSL::PKCS12.create("password", "key", pkey, cert)
p12_bytes = p12.to_der
...