search for: clearsign

Displaying 20 results from an estimated 35 matches for "clearsign".

Did you mean: clearing
2008 Aug 22
1
A couple of minutes on GnuPG and signing files
...Aug 2008 CentOS acknowledge CVE-2007-4752 and are reviewing our build and signing processes and hosts for signs of tampering subsequent to retrieval of SRPMs It can be hard for a person to get a capsule writeup on signed content, and how to verify that it is indeed authentic. I have placed clearsigned content addressing this process at my personal domain webserver: http://www.herrold.com/import-key-howto.txt.asc and as an attachment to this email. I have verified that the copy at my site verifies. this email. Hopefully this attched writeup will transit the CentOS mailing list manager...
2018 Nov 30
0
Setup a Samba AD DC as an additional DC
I have not proceeded past loading your files as it is complaining about Clearsigned file invalid, etc...: :~$ sudo wget -O - http://apt.van-belle.nl/louis-van-belle.gpg-key.asc | sudo apt-key add - --2018-11-30 00:03:40-- http://apt.van-belle.nl/louis-van-belle.gpg-key.asc Resolving apt.van-belle.nl (apt.van-belle.nl)... 149.210.206.148, 2a01:7c8:aab6:5ab:5054:ff:feff:ae66 Conn...
2018 Nov 29
8
Setup a Samba AD DC as an additional DC
Hai Barry, We know about exchange might be a problem, the others i dont know.. Check the windows schema levels. https://wiki.samba.org/index.php/AD_Schema_Version_Support You could try a clean setup as shown by my howto. Before you install setup ip and hostname in the windows DNS for the linux server. Make sure you use a name thats never used before, just to be sure of no side effects.
2014 Dec 01
1
creating an account on wiki-requests@freedesktop.org
Hi, I'm trying to create an account to have access to more texts, the ones with "?". But I get the error "Failed to verify clearsigned PGP body" on the return email. I use gpg (GnuPG) 1.4.18. Could someone help me? Thanks in advance. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/nouveau/attachments/20141201/2c26cef2/attachment.html>
2016 Oct 23
3
Support for signing R packages with GPG
...ing experimental support for including a PGP signature in R source packages. This would make it possible to verify the identity of the package author and integrity of the package sources. There are two ways to implement this. Assuming GnuPG is on the PATH, the CMD build script could call: gpg --clearsign MD5 -o MD5.gpg Alternatively the 'gpg' R package provides a more portable method via the gpgme C library. This method works on Windows / macOS as well. writeLines(gpg::gpg_sign("MD5"), "MD5.gpg") Attached is an example implementation of the latter (also available at...
2009 Jul 30
5
Open Letter to Lance Davis
...the required information to keep the project alive at the 'centos.org' domain. Sincerely, Russ Herrold Ralph Angenendt Karanbir Singh Jim Perrin Donavan Nelson Tim Verhoeven Tru Huynh Johnny Hughes - ---------------------------------- This document clearsigned with the key indicated and of record at the customary keyservers See: http://orcorc.blogspot.com/2008/08/gnupg-few-minutes-on-using-detached-and.html user: "R P Herrold <herrold at owlriver.com>" 1024-bit DSA key, ID 9B649644, created 2003-02-09 -----BEGIN PGP SIGNATURE----- Ver...
2016 Oct 25
0
Support for signing R packages with GPG
...PGP signature in R source packages. This would make it possible to > verify the identity of the package author and integrity of the > package > sources. > > There are two ways to implement this. Assuming GnuPG is on the PATH, > the CMD build script could call: > > ? gpg --clearsign MD5 -o MD5.gpg > > Alternatively the 'gpg' R package provides a more portable method via > the gpgme C library. This method works on Windows / macOS as well. > > ? writeLines(gpg::gpg_sign("MD5"), "MD5.gpg") > > Attached is an example implementati...
2017 Nov 13
0
[PATCH v12 3/3] New tool: virt-builder-repository
...+ (quote (cmdline.gpg // "index.gpg")) + (quote tmprepo) (quote gpgkey) in + if shell_command cmd <> 0 then + error (f_"failed to export the GPG key %s") gpgkey; + + let cmd = sprintf "%s --armor --default-key %s --clearsign %s" + (quote cmdline.gpg) (quote gpgkey) + (quote (tmprepo // "index" )) in + if shell_command cmd <> 0 then + error (f_"failed to sign index"); + + (* Remove the index file since we have the signed version of it...
2019 Dec 17
5
[PATCH 0/3] Various dist/build fixes
Fix one dist issue, and various builddir!=srcdir issues, also with the patch proposed in the Debian bug #946594. Patch #3 applies also to the virt-v2v repository, and will be committed there too (with references to the libguestfs commit). Pino Toscano (3): inspector: ship the actual test script tests: fix srcdir references build: fix make implicit dependencies on ml/mli files
2017 Jan 03
0
[PATCH 5/5] Add a virt-builder-repository tool
..."--export"; cmdline.gpgkey ] in + if run_command cmd <> 0 then + error (f_"Failed to export GPG key %s") cmdline.gpgkey; + + let cmd = [ cmdline.gpg; "--armor"; + "--default-key"; cmdline.gpgkey; + "--clearsign"; (tmprepo // "index") ] in + if run_command cmd <> 0 then + error (f_"Failed to sign index"); + + (* Remove the index file since we have the signed version of it *) + Sys.remove (tmprepo // "index") + ); + + (* Move files in tmprepo into the...
2017 Nov 21
5
[PATCH v13 0/3] virt-builder-repository
Hey there, Here is an update of the series. The changes: * Incorporate Richard's comments. Left out the with_openfile one since that leads to a double close. * Change the ask option return type to string (removing the option) since if the use doesn't input anything we're using the default, and the default is now a mandatory parameter. * Make sure there are items in the
2017 Mar 07
0
[PATCH v4 9/9] Add a virt-builder-repository tool
...x.gpg"); + "--export"; gpgkey ] in + if run_command cmd <> 0 then + error (f_"failed to export GPG key %s") gpgkey; + + let cmd = [ cmdline.gpg; "--armor"; + "--default-key"; gpgkey; + "--clearsign"; (tmprepo // "index") ] in + if run_command cmd <> 0 then + error (f_"failed to sign index"); + + (* Remove the index file since we have the signed version of it *) + if not cmdline.keep_unsigned then + Sys.remove (tmprepo // "index") +...
2017 Mar 23
0
[PATCH v5 10/10] Add a virt-builder-repository tool
...x.gpg"); + "--export"; gpgkey ] in + if run_command cmd <> 0 then + error (f_"failed to export GPG key %s") gpgkey; + + let cmd = [ cmdline.gpg; "--armor"; + "--default-key"; gpgkey; + "--clearsign"; (tmprepo // "index") ] in + if run_command cmd <> 0 then + error (f_"failed to sign index"); + + (* Remove the index file since we have the signed version of it *) + if not cmdline.keep_unsigned then + Sys.remove (tmprepo // "index") +...
2017 Feb 10
0
[PATCH v3 10/10] Add a virt-builder-repository tool
...x.gpg"); + "--export"; gpgkey ] in + if run_command cmd <> 0 then + error (f_"Failed to export GPG key %s") gpgkey; + + let cmd = [ cmdline.gpg; "--armor"; + "--default-key"; gpgkey; + "--clearsign"; (tmprepo // "index") ] in + if run_command cmd <> 0 then + error (f_"Failed to sign index"); + + (* Remove the index file since we have the signed version of it *) + if not cmdline.keep_unsigned then + Sys.remove (tmprepo // "index") +...
2017 Apr 12
0
[PATCH v6 10/10] Add a virt-builder-repository tool
...let cmd = sprintf "%s --armor --output %s/index.gpg --export %s" + cmdline.gpg tmprepo gpgkey in + if shell_command cmd <> 0 then + error (f_"failed to export GPG key %s") gpgkey; + + let cmd = sprintf "%s --armor --default-key %s --clearsign %s/index" + cmdline.gpg gpgkey tmprepo in + if shell_command cmd <> 0 then + error (f_"failed to sign index"); + + (* Remove the index file since we have the signed version of it *) + if not cmdline.keep_unsigned then + Sys.remove (tmpre...
2017 Jun 19
0
[PATCH v7 9/9] Add a virt-builder-repository tool
...uot; + (quote (cmdline.gpg // "index.gpg")) + (quote tmprepo) (quote gpgkey) in + if shell_command cmd <> 0 then + error (f_"failed to export GPG key %s") gpgkey; + + let cmd = sprintf "%s --armor --default-key %s --clearsign %s" + (quote cmdline.gpg) (quote gpgkey) + (quote (tmprepo // "index" )) in + if shell_command cmd <> 0 then + error (f_"failed to sign index"); + + (* Remove the index file since we have the signed version of it...
2017 Sep 18
0
[PATCH v9 7/7] New tool: virt-builder-repository
...uot; + (quote (cmdline.gpg // "index.gpg")) + (quote tmprepo) (quote gpgkey) in + if shell_command cmd <> 0 then + error (f_"failed to export GPG key %s") gpgkey; + + let cmd = sprintf "%s --armor --default-key %s --clearsign %s" + (quote cmdline.gpg) (quote gpgkey) + (quote (tmprepo // "index" )) in + if shell_command cmd <> 0 then + error (f_"failed to sign index"); + + (* Remove the index file since we have the signed version of it...
2017 Oct 05
0
[PATCH v11 6/6] New tool: virt-builder-repository
...+ (quote (cmdline.gpg // "index.gpg")) + (quote tmprepo) (quote gpgkey) in + if shell_command cmd <> 0 then + error (f_"failed to export the GPG key %s") gpgkey; + + let cmd = sprintf "%s --armor --default-key %s --clearsign %s" + (quote cmdline.gpg) (quote gpgkey) + (quote (tmprepo // "index" )) in + if shell_command cmd <> 0 then + error (f_"failed to sign index"); + + (* Remove the index file since we have the signed version of it...
2017 Sep 12
0
[PATCH v8 7/7] Add a virt-builder-repository tool
...uot; + (quote (cmdline.gpg // "index.gpg")) + (quote tmprepo) (quote gpgkey) in + if shell_command cmd <> 0 then + error (f_"failed to export GPG key %s") gpgkey; + + let cmd = sprintf "%s --armor --default-key %s --clearsign %s" + (quote cmdline.gpg) (quote gpgkey) + (quote (tmprepo // "index" )) in + if shell_command cmd <> 0 then + error (f_"failed to sign index"); + + (* Remove the index file since we have the signed version of it...
2017 Nov 13
6
[PATCH v12 0/3] virt-builder-repository tool
Hi there! Here is the latest version of the series including Richard's comments. I also reworked the repository_main.ml code to avoid setting an empty entry if not found. Cédric Bosdonnat (3): builder: change arch type to distinguish guesses builder: add a template parameter to get_index New tool: virt-builder-repository .gitignore | 4 +