Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Encrypting files using openssl in Alteryx

maaz
6 - Meteoroid

I have a task to encrypt files using openssl commands in Alteryx.I am able to encrypt the files using openssl through command line.

Using the run command tool I am able to open "openssl" but no further commands can be passed after that.

2 REPLIES 2
apathetichell
20 - Arcturus

are you using a .bat file? What's in your .bat file? what happens when you run the .bat file outside of Alteryx.

 

Start by getting your .bat file/CLI commands right outside of Alteryx -then work to recreate in Run command.

danilang
19 - Altair
19 - Altair

Hi @maaz 

 

Build your entire openSSL string on a single line.  To encrypt a file the line would look like 

openssl enc -aes-256-cbc -e -iter 1000 -salt -in primes.dat -out primes.enc -pass pass:somepassword

check Command_Line_Utilities for more options

 

Dan

Labels
Top Solution Authors