14 lines
377 B
Makefile
14 lines
377 B
Makefile
ls:
|
|
ls -l
|
|
|
|
make-ca-private-key:
|
|
certtool --generate-privkey > certificate_authority_key.pem
|
|
# umask 277 certificate_authority_key.pem
|
|
make ls
|
|
|
|
make-Certificate-Authority-Certificate-file:
|
|
certtool --generate-self-signed \
|
|
--template certificate_authority_template.info \
|
|
--load-privkey certificate_authority_key.pem \
|
|
--outfile certificate_authority_certificate.pem
|