2 Aralık 2019 Pazartesi

openssl enc aracı

Giriş
encode anlamına gelir.

-base64 seçeneği
Örnek
Şöyle yaparız.
echo -n '      hello world' | openssl base64
Çıktı olarak şunu alırız.
ICAgICAgaGVsbG8gd29ybGQ=
Örnek
Şöyle yaparız.
openssl dgst -sha256 -binary <<<"..." \
    | openssl enc -base64 \
-e seçeneği
AES256 ile şifrelemek için şöyle yaparız.
$ unset HISTFILE
$ cat something | openssl enc -e -aes256 > encrypted-something
enter aes-256-cbc encryption password:
Verifying - enter aes-256-cbc encryption password:

Hiç yorum yok:

Yorum Gönder