• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

OpenXPKI_DataVault.crtH A D03-May-20221.5 KiB2625

OpenXPKI_DataVault.keyH A D03-May-20222.6 KiB4342

OpenXPKI_Issuing_CA.crtH A D03-May-20225.9 KiB106104

OpenXPKI_Issuing_CA.keyH A D03-May-20222.6 KiB4342

OpenXPKI_Root_CA.crtH A D03-May-20221.5 KiB2625

OpenXPKI_Root_CA.keyH A D03-May-20222.6 KiB4342

OpenXPKI_SCEP_RA.crtH A D03-May-20225.6 KiB102100

OpenXPKI_SCEP_RA.keyH A D03-May-20222.6 KiB4342

README.mdH A D03-May-2022575 1912

README.md

1This are long living sample certificates to be used in test environments.
2
3A new set may be created by running the following commands:
4
5```bash
6tempdir=$(mktemp -d)
7
8# create sample certs
9cp /repo/config/contrib/sampleconfig.sh $tempdir/
10chmod 0755 $tempdir/sampleconfig.sh
11
12perl -pe 's/openxpkictl start/echo "NO! We stop here"\nexit/' -i $tempdir/sampleconfig.sh
13perl -pe 's/^(.?DAYS)=.*/$1="25585"/' -i $tempdir/sampleconfig.sh
14
15$tempdir/sampleconfig.sh $tempdir
16
17cp $tempdir/OpenXPKI_{Root_CA,DataVault,Issuing_CA,SCEP_RA}.{crt,key} /repo/tools/testenv/certificates/
18```
19