0
0
Fork 0

rename to better distinguish between cert und csr

This commit is contained in:
Gibheer 2015-03-23 09:45:39 +01:00
parent 885340ef8f
commit 3e34c17449
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ var (
type (
// holds all certificate related flags, which need parsing afterwards
certFlagsContainer struct {
certiticateRequestRawFlags struct {
manual struct {
serialNumber string // the serial number for the cert
commonName string // the common name used in the cert
@ -57,7 +57,7 @@ type (
privateKeyPath string // path to the private key
publicKeyPath string // path to the public key
signRequestPath string // path to the certificate sign request
certificateFlags certFlagsContainer // container for certificate related flags
certificateFlags certiticateRequestRawFlags // container for certificate related flags
signature string // a base64 encoded signature
}