mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
888ddda157
This Makefile can be used to update test certificates. It should have been moved at which the certificates was moved at r56836. [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66687 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
15 lines
561 B
Makefile
15 lines
561 B
Makefile
all:
|
|
|
|
regen_certs:
|
|
touch server.key
|
|
make server.crt
|
|
|
|
cacert.pem: server.key
|
|
openssl req -new -x509 -days 1825 -key server.key -out cacert.pem -text -subj "/C=JP/ST=Shimane/L=Matz-e city/O=Ruby Core Team/CN=Ruby Test CA/emailAddress=security@ruby-lang.org"
|
|
|
|
server.csr:
|
|
openssl req -new -key server.key -out server.csr -text -subj "/C=JP/ST=Shimane/O=Ruby Core Team/OU=Ruby Test/CN=localhost"
|
|
|
|
server.crt: server.csr cacert.pem
|
|
openssl x509 -days 1825 -CA cacert.pem -CAkey server.key -set_serial 00 -in server.csr -req -text -out server.crt
|
|
rm server.csr
|