Changes between Version 1 and Version 2 of archives


Ignore:
Timestamp:
Jun 22, 2010, 1:29:22 PM (14 years ago)
Author:
nerdling (Jeremy Lavergne)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • archives

    v1 v2  
    1010openssl rsa -in privkey.pem -pubout -out pubkey.pem
    1111}}}
    12 Then sign the archives like this:
    13 {{{
    14 openssl dgst -ripemd160 -sign privkey.pem -out archive.tbz2.rmd160 archive.tbz2
    15 }}}
    1612
    1713Be 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:
     
    2117
    2218 = Sign Packages =
     19Then sign the archives like this:
     20{{{
     21openssl dgst -ripemd160 -sign privkey.pem -out archive.tbz2.rmd160 archive.tbz2
     22}}}
     23
    2324If you have lots of archives to sign, this can be done via a for loop in your shell. Here I use bash:
    2425{{{