diff --git a/internal/encryptor/encryptor.go b/internal/encryptor/encryptor.go index eef5256..4a05e7f 100644 --- a/internal/encryptor/encryptor.go +++ b/internal/encryptor/encryptor.go @@ -4,6 +4,7 @@ import ( "bytes" "context" "encoding/json" + "fmt" "io" "net/http" "time" @@ -110,6 +111,8 @@ func (e Encryptor) Decrypt(input string, headers map[string]string) (string, err return "", err } + fmt.Println(string(bytes)) + decryptionSecret := DecryptionResponse{} err = json.Unmarshal(bytes, &decryptionSecret) if err != nil {