Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
List of MorphoCloudWorkflow changes:

```
$ git shortlog 906f74f..0f35a29 --no-merges
Jean-Christophe Fillion-Robin (1):
      fix(encode-decode-string): Fix email encoding ensuring output is not split
```

See MorphoCloud/MorphoCloudWorkflow@906f74f...0f35a29
  • Loading branch information
jcfr committed Nov 25, 2024
1 parent f0d9f24 commit a91bf28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/encode-decode-string/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ runs:
fi
if [[ $SKIP == "false" ]]; then
if [[ $OPERATION == "encode" ]]; then
output_string=$(echo "$INPUT_STRING" | openssl enc -base64 -e -aes-256-cbc -salt -pass pass:$ENCRYPTION_KEY -pbkdf2)
output_string=$(echo "$INPUT_STRING" | openssl enc -base64 -e -aes-256-cbc -salt -pass pass:$ENCRYPTION_KEY -pbkdf2 -A)
else
output_string=$(echo "$INPUT_STRING" | openssl enc -base64 -d -aes-256-cbc -salt -pass pass:$ENCRYPTION_KEY -pbkdf2)
fi
Expand Down

0 comments on commit a91bf28

Please sign in to comment.