aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rsa.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/rsa.go b/rsa.go
index 69e0a16..df8c8cb 100644
--- a/rsa.go
+++ b/rsa.go
@@ -8,6 +8,10 @@ import (
"errors"
)
+const (
+ PemLabelRsa = "RSA PRIVATE KEY"
+)
+
type (
RsaPrivateKey struct {
private_key *rsa.PrivateKey