File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -98,15 +98,15 @@ func (c *MiscreantCipher) Marshal(s interface{}) (string, error) {
98
98
}
99
99
100
100
// base64-encode the result
101
- encoded := base64 .RawURLEncoding .EncodeToString (ciphertext )
101
+ encoded := base64 .URLEncoding .EncodeToString (ciphertext )
102
102
return encoded , nil
103
103
}
104
104
105
105
// Unmarshal takes the marshaled string, base64-decodes into a byte slice, decrypts the
106
106
// byte slice the pased cipher, and unmarshals the resulting JSON into the struct pointer passed
107
107
func (c * MiscreantCipher ) Unmarshal (value string , s interface {}) error {
108
108
// convert base64 string value to bytes
109
- ciphertext , err := base64 .RawURLEncoding .DecodeString (value )
109
+ ciphertext , err := base64 .URLEncoding .DecodeString (value )
110
110
if err != nil {
111
111
return err
112
112
}
You can’t perform that action at this time.
0 commit comments