aboutsummaryrefslogtreecommitdiff
path: root/sign_request.go
diff options
context:
space:
mode:
authorGibheer <gibheer@gmail.com>2015-01-15 06:51:45 +0100
committerGibheer <gibheer@gmail.com>2015-01-15 06:51:45 +0100
commit7097d3b058faceabcfd33c7a024b779169d2a307 (patch)
tree5bb11fb7acb14d85492568488489824174f17f75 /sign_request.go
parent73a07e7665ceb5ea35b33091e286774e4f5ab04e (diff)
replace PrivateKey with crypto.Signer
Diffstat (limited to 'sign_request.go')
-rw-r--r--sign_request.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sign_request.go b/sign_request.go
index 7c6381a..cc312ce 100644
--- a/sign_request.go
+++ b/sign_request.go
@@ -21,7 +21,7 @@ type (
DNSNames []string // alternative names to the BaseAttributes.CommonName
IPAddresses []net.IP // alternative IP addresses
- private_key PrivateKey
+ private_key crypto.Signer
output_stream io.Writer // the output stream for the CSR
}
)