Changes between Version 1 and Version 2 of archives
- Timestamp:
- Jun 22, 2010, 1:29:22 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
archives
v1 v2 10 10 openssl rsa -in privkey.pem -pubout -out pubkey.pem 11 11 }}} 12 Then sign the archives like this:13 {{{14 openssl dgst -ripemd160 -sign privkey.pem -out archive.tbz2.rmd160 archive.tbz215 }}}16 12 17 13 Be sure to add this key to your ssh keyring or you'll get asked for the password each time it's used. Another alternative is it save it as an unencrypted key, like so: … … 21 17 22 18 = Sign Packages = 19 Then sign the archives like this: 20 {{{ 21 openssl dgst -ripemd160 -sign privkey.pem -out archive.tbz2.rmd160 archive.tbz2 22 }}} 23 23 24 If you have lots of archives to sign, this can be done via a for loop in your shell. Here I use bash: 24 25 {{{