06-18-2021 12:19 PM
I have to generate a 32 bit Password which I would like to do with OpenSSL software (Done on the command window of windows). I just do not know how to link or send the generated random number to the CVI Code, any ideas or methods how to do that?
Thanks a lot in advance for every tipp or help.
Solved! Go to Solution.
06-21-2021 02:08 AM
I have no experience on OpenSSL, but since this appears to be a command-line instruction you could issue it with system () redirecting the output to a file and reading it back after completion:
system ("c:\\MyFolder\\MyCommand.exe >> output.txt");
After command completion output.txt should contain command output.