gpg는 여러가지 암호화를 지원하는데...
비대칭 암호화는 필요 없고, 단순한 symmetric 암호화가 필요한 경우가 있다.
이 경우 사용법은
gpg -c --cipher-algo <암호화 알고리즘> -o filename.gpg filename
처럼 간단하다. 그리고 압축하면서 동시에 암호화 하는 것도 가능하다.
http://superuser.com/questions/272879/how-to-use-password-protection-with-the-linux-tar-command
그러나 암호를 묻는 창이 gtk window로 뜨기 때문에 문제가 되는 경우가 있다.
이 경우 ~/.gnupg/gpg-agent.conf를 고치면 된다.
그 외에도 gpg는 용도가 많은데 다음을 참고하자.
http://www.gentoo.org/doc/en/gnupg-user.xml
http://www.gnupg.org/documentation/
비대칭 암호화는 필요 없고, 단순한 symmetric 암호화가 필요한 경우가 있다.
이 경우 사용법은
gpg -c --cipher-algo <암호화 알고리즘> -o filename.gpg filename
처럼 간단하다. 그리고 압축하면서 동시에 암호화 하는 것도 가능하다.
http://superuser.com/questions/272879/how-to-use-password-protection-with-the-linux-tar-command
그러나 암호를 묻는 창이 gtk window로 뜨기 때문에 문제가 되는 경우가 있다.
이 경우 ~/.gnupg/gpg-agent.conf를 고치면 된다.
pinentry-program /usr/bin/pinentry-qt4 no-grab default-cache-ttl 600/usr/bin/pinentry-qt4도 안되면 /usr/bin/pinentry-curses를 써보자.
그 외에도 gpg는 용도가 많은데 다음을 참고하자.
http://www.gentoo.org/doc/en/gnupg-user.xml
http://www.gnupg.org/documentation/