diff options
author | Gibheer <gibheer@gmail.com> | 2015-03-23 09:45:39 +0100 |
---|---|---|
committer | Gibheer <gibheer@gmail.com> | 2015-03-23 09:45:39 +0100 |
commit | 3e34c17449cef23b79d614fac8010ef557f2d144 (patch) | |
tree | d32f3f865e382c22ce3c7dd143220045cfea186d /flags.go | |
parent | 885340ef8f27f81c626626798cdbcd63e2f992b6 (diff) |
rename to better distinguish between cert und csr
Diffstat (limited to 'flags.go')
-rw-r--r-- | flags.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 } |