Skip to content

Commit

Permalink
Merge pull request #21 from muzzammilshahid/handle-raw-format
Browse files Browse the repository at this point in the history
Fix: Handle raw format in cryptosign
  • Loading branch information
muzzammilshahid authored Jul 1, 2024
2 parents 32eb0a1 + 207caf6 commit 440e935
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func DecodeHexOrBase64(str string) ([]byte, error) {

func FormatOutput(outputFormat, outputString string) (string, error) {
switch outputFormat {
case HexFormat, "":
case HexFormat, RawFormat:
return outputString, nil

case Base64Format:
Expand Down

0 comments on commit 440e935

Please sign in to comment.