Search Results

Search: Posts Made By: saichand1985
1,185
Posted By guruprasadpr
Hi Check this article (link removed)...
Hi

Check this article (link removed) ...this might help you...


Guru.
17,485
Posted By mirni
encrypt: echo ${username}:${password} |...
encrypt:

echo ${username}:${password} | openssl des3 -salt -pass pass:$password -out credentials.txt.enc

Decrypt:

openssl -d des3 -salt -pass pass:${password} -in credentials.txt.enc -out...
9,519
Posted By DGPickett
Well, proceessing the data makes it more...
Well, proceessing the data makes it more interpretable, comparable and usable for reset of values.

You might test commands and dynamically choose commands that are available/effective, like with...
17,485
Posted By mirni
I like to use openssl. Something like this should...
I like to use openssl. Something like this should do the trick:

#!/bin/bash
decrypt=credentials.txt
encrypt=${decrypt}.encrypted

if [[ $# -eq 0 ]] ; then
echo "Gimme username"
...
17,485
Posted By balajesuri
Check this...
Check this (https://www.unix.com/unix-dummies-questions-answers/7764-file-encryption-decryption-unix.html).
Showing results 1 to 5 of 5

 
All times are GMT -4. The time now is 11:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy