Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. gpg: no valid OpenPGP data found.
  2. gpg: processing message failed: Unknown system error
  3. debsig: subprocess getKeyID returned error exit status 2
  4.  
  5. # Unpack
  6. ar x unsigned.deb
  7.  
  8. # Generate combine file
  9. cat debian-binary control.tar.gz data.tar.gz > combined
  10.  
  11. # Create detached signature for combined
  12. gpg -abs -o _gpgorigin combined
  13.  
  14. # Repack
  15. ar rc signed.deb _gpgorigin debian-binary control.tar.gz data.tar.gz
  16.  
  17. gpg --output doc --decrypt _gpgorigin
  18. Detached signature.
  19. Please enter name of data file: combined
  20. gpg: Signature made Thu Apr 25 22:43:37 2019 UTC
  21. gpg: using RSA key AAAABBBBCCCCDDDD996FCC98FFFFFFFFFFFFFFFF
  22. gpg: Good signature from "mygroup Testing <testing@mygroup.net>" [unknown]
  23. gpg: WARNING: This key is not certified with a trusted signature!
  24. gpg: There is no indication that the signature belongs to the owner.
  25. Primary key fingerprint: AAAA BBBB CCCC DDDD 996F CC98 FFFF FFFF FFFF FFFF
  26.  
  27. debsig-verify -v -d signed.deb
  28.  
  29. debsig: Starting verification for: signed.deb
  30. debsig: getSigKeyID: got FFFFFFFFFFFFFFFF for origin key
  31. debsig: Using policy directory: /etc/debsig/policies/FFFFFFFFFFFFFFFF
  32. debsig: Parsing policy file: /etc/debsig/policies/FFFFFFFFFFFFFFFF/mygroup-test.pol
  33. debsig: parsePolicyFile: parsing '/etc/debsig/policies/FFFFFFFFFFFFFFFF/mygroup-test.pol'
  34. debsig: parsePolicyFile: completed
  35. debsig: Checking Selection group(s).
  36. debsig: Processing 'origin' key...
  37. gpg: no valid OpenPGP data found.
  38. gpg: processing message failed: Unknown system error
  39. debsig: subprocess getKeyID returned error exit status 2
  40.  
  41. gpg --no-default-keyring --keyring /usr/share/debsig/keyrings/FFFFFFFFFFFFFFFF/pubring.gpg --list-sigs
  42. /usr/share/debsig/keyrings/FFFFFFFFFFFFFFFF/pubring.gpg
  43. -------------------------------------------------------
  44. pub rsa2048 2017-06-19 [SC]
  45. AAAABBBBCCCCDDDD996FCC98FFFFFFFFFFFFFFFF
  46. uid [ unknown] MyGroup Testing <testing@mygroup.net>
  47. sig 3 FFFFFFFFFFFFFFFF 2017-06-19 MyGroup Testing <testing@mygroup.net>
  48. sub rsa2048 2017-06-19 [E]
  49. sig FFFFFFFFFFFFFFFF 2017-06-19 MyGroup Testing <testing@mygroup.net>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement