LINUX.ORG.RU

iv undefined when decrypt file using openssl

 , ,


0

1

Всем привет!
Я пытаюсь расшифровать файл с помощью openssl
Git repo
https://github.com/patsevanton/nomad-rpm

.travis.yml
https://github.com/patsevanton/nomad-rpm/blob/master/.travis.yml
Build
https://travis-ci.com/patsevanton/nomad-rpm
$ openssl aes-256-cbc -K $[secure] -iv $[secure] -in .copr.enc -out .copr -d
iv undefined
The command «openssl aes-256-cbc -K $[secure] -iv $[secure] -in .copr.enc -out .copr -d» failed and exited with 1 during .
Check documentation https://docs.travis-ci.com/user/encrypting-files/, but all is ok
How i encrypt file

travis encrypt-file .copr .copr.enc
encrypting .copr for patsevanton/nomad-rpm
storing result as .copr.enc
DANGER ZONE: Override existing .copr.enc? |no| yes
storing secure env variables for decryption

Please add the following to your build script (before_install stage in your .travis.yml, for instance):

    openssl aes-256-cbc -K $encrypted_****_key -iv $encrypted_****_iv -in .copr.enc -out .copr -d

Pro Tip: You can add it automatically by running with --add.

Make sure to add .copr.enc to the git repository.
Make sure not to add .copr to the git repository.
Commit all changes to your .travis.yml.



Что я делаю не так? или как вы пытаетесь расшифровать файл с помощью openssl?
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.