diff options
author | Gibheer <gibheer@gmail.com> | 2015-02-18 21:36:32 +0100 |
---|---|---|
committer | Gibheer <gibheer@gmail.com> | 2015-02-18 21:36:32 +0100 |
commit | 67f850c9fbd4186b41113240a5a545676dbbf0b7 (patch) | |
tree | f56f5cdcad4f594f73d838693a4286459c3ab9d0 /rsa.go | |
parent | 53327f7467343588549d8f38b66012b5e868c9db (diff) |
add pem label for rsa
Diffstat (limited to 'rsa.go')
-rw-r--r-- | rsa.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -8,6 +8,10 @@ import ( "errors" ) +const ( + PemLabelRsa = "RSA PRIVATE KEY" +) + type ( RsaPrivateKey struct { private_key *rsa.PrivateKey |