Skip to content

Commit c7247bd

Browse files
authored
Merge pull request buzzfeed#59 from buzzfeed/revert-51-use-raw-url-encoding
Revert "internal/pkg/aead: use base64.URLRawEncoding"
2 parents d230703 + 3667629 commit c7247bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/pkg/aead/aead.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,15 @@ func (c *MiscreantCipher) Marshal(s interface{}) (string, error) {
9898
}
9999

100100
// base64-encode the result
101-
encoded := base64.RawURLEncoding.EncodeToString(ciphertext)
101+
encoded := base64.URLEncoding.EncodeToString(ciphertext)
102102
return encoded, nil
103103
}
104104

105105
// Unmarshal takes the marshaled string, base64-decodes into a byte slice, decrypts the
106106
// byte slice the pased cipher, and unmarshals the resulting JSON into the struct pointer passed
107107
func (c *MiscreantCipher) Unmarshal(value string, s interface{}) error {
108108
// convert base64 string value to bytes
109-
ciphertext, err := base64.RawURLEncoding.DecodeString(value)
109+
ciphertext, err := base64.URLEncoding.DecodeString(value)
110110
if err != nil {
111111
return err
112112
}

0 commit comments

Comments
 (0)