Chinaunix首页 | 论坛 | 博客

  • 博客访问: 913592
  • 博文数量: 226
  • 博客积分: 10077
  • 博客等级: 上将
  • 技术积分: 2708
  • 用 户 组: 普通用户
  • 注册时间: 2008-05-25 14:36
文章分类

全部博文(226)

文章存档

2010年(15)

2009年(82)

2008年(129)

我的朋友

分类: LINUX

2008-08-05 08:23:45

9.GPG
#生成密匙
代码:
gpg –gen-key
#显示密匙,公匙,私匙
代码:
gpg --list-keys
gpg --list-public-keys
gpg –list-secret-keys
#以ascii形式dump出公匙,私匙。
代码:
gpg --export -a userID >public.key
gpg --export-secret-key -a userID>secret.key
#导入key.file
代码:
gpg --import key.file
# 加密生成signaure和公匙加密的文件。
代码:
gpg -se -r userID file
#加密生成没有signaure的加密文件。
代码:
gpg -e -r userID file
#加密生成signaure和symmetric形式的加密文件。
代码:
gpg -sc -r userID file
#加密生成没有signaure的symmetric加密文件。
代码:
gpg -c -r userID file
#加密生成sig式的detachable文件。
代码:
gpg -b -r userID file
#解密文件
代码:
gpg [--decrypt] file
#复核sig文件。
代码:
gpg --verify sig.file
#删除密匙,私匙,私匙和公匙。
代码:
gpg --delete-key userID
gpg --delete-secret-key userID
gpg --delete-secret-and-public-key userID
更多的用法请参看manpage.
阅读(790) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~