private repo:以下签名无效

private repo:以下签名无效

在我的仿生‘客户’身上我得到了:

GPG error: http://repo.localpod/Dml/ldom-debs/ubuntu bionic InRelease: The following signatures were invalid: ADE541A20ACF8997C01BDCF7090678A30132048A

请注意,这里说的是“无效”,而不是缺失!

这些是我自己的 .deb 包,收集在一个 repo 中。(这对于 trusty 和 xenial 来说很有效)

我已经使用类似以下内容对 repo 进行了签名:(通过 reprepro 调用:conf/distributions)

gpg --batch --yes --keyring $KeyP --secret-keyring $KeyS -a --no-permission-warning   --detach-sign --default-key 'ldom install service' --output $3 $1
$1 = .../Release
$2 = .../InRelease

好的,我尝试过:

 wget  http://repo.localpod/Dml/ldom-debs/ubuntu/dists/bionic/InRelease
 and: 
 # gpgv --keyring /etc/apt/trusted.gpg "InRelease"
 gpgv: Signature made Thu 24 May 2018 12:20:29 PM CEST
 gpgv:                using DSA key 090678A30132048A
 gpgv: Good signature from "ldom install service <[email protected]>"

这或多或少不是 apt-get 检查签名的方式吗?还是密钥太旧了?类型错误?

完整错误:

 apt-key list
 pub   rsa2048 2014-06-24 [SC]
      754A 1A7A E731 F165 D5E6  D4BD 0E08 A149 DE57 BFBE
uid           [ unknown] SaltStack Packaging Team <[email protected]>
sub   rsa2048 2014-06-24 [E]

pub   dsa1024 2013-06-10 [SCA]
      ADE5 41A2 0ACF 8997 C01B  DCF7 0906 78A3 0132 048A
uid           [ unknown] LDOM install service <[email protected]>
sub   elg1024 2013-06-10 [E]

root@ubu18:~# apt-get update
 Get:1 http://repo.localpod/Dml/ldom-debs/ubuntu bionic InRelease [1,154 B]
 Err:1 http://repo.localpod/Dml/ldom-debs/ubuntu bionic InRelease
   The following signatures were invalid:  ADE541A20ACF8997C01BDCF7090678A30132048A
 Reading package lists... Done
 W: GPG error: http://repo.localpod/Dml/ldom-debs/ubuntu bionic InRelease: The  following signatures were invalid: ADE541A20ACF8997C01BDCF7090678A30132048A
 E: The repository 'http://repo.localpod/Dml/ldom-debs/ubuntu bionic InRelease'  is not signed.
 N: Updating from such a repository can't be done securely, and is therefore disabled by default.
 N: See apt-secure(8) manpage for repository creation and user configuration details.

任何有关我所遗漏的线索,都会受到欢迎...谢谢,

/霍尔格

解决方法:

我最终遵循了指南(https://www.digitalocean.com/community/tutorials/how-to-use-reprepro-for-a-secure-package-repository-on-ubuntu-14-04) ----> 或多或少。---> 仍有一些“正在进行的工作”,但这里有一些提示:

使用(新鲜的)docker 镜像:

docker run -it -v /your/packages:/debs ubuntu:18.04
apt update
apt install -y vim inetutils-ping curl wget netcat telnet aptitude man manpages bash-completion rng-tools reprepro iproute2

rebuild your packages:

cd  /debs/src
ls -d */DEBIAN  | xargs -n1 dirname | xargs -n1 dpkg-deb -vD --build

关键内容的时间。使用现有密钥:

    gpg --import /debs/.../secring.gpg

对于新密钥:

gpg --full-generate-key
#rsa 4
#bits  4096
#your_key_name
#passphrase

#
gpg --edit-key your_key_name
#addkey
#(4) RSA (sign only)
#4096
#0
#yes
#yes
#save

gpg --list-secret
gpg --list-key


gpg --export .....your..key.....number............... > keyfile
apt-key add keyfile

好的,现在是设置 reprepro 的时间了:

mkdir /debs/u18repo
cd /debs/u18repo
cat <<END >conf/options
ask-passphrase
END

cat <<END >conf/distributions
Codename: bionic
Components: main
Architectures: amd64
SignWith: .....your..key.....number...............
END
reprepro -b /debs/u18repo includedeb bionic /debs/src/*.deb

gpg --export .....your..key.....number............... > keyfile

去测试:

apt-key add keyfile
echo "deb file:////debs/u18repo/ bionic main" >> "/etc/apt/sources.list"
apt update

现在,如果您在客户端(httpd)上共享/debs/u18repo,并使用以下命令导入密钥:apt-key add http:/.../keyfile apt update 应该可以工作...

答案1

我遇到了同样的问题。在 InRelease 文件中有 PGP 签名消息,它应该包含:

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

这意味着使用 SHA256 进行签名。SHA1 是弱算法,不应使用。因此,如果存在 SHA1,则需要更新 gnupg 配置以使用 sha256

就我而言:

echo "personal-digest-preferences SHA256 SHA384 SHA512 SHA224 RIPEMD160" >> ~/.gnupg/gpg.conf

然后像往常一样使用 gpg 重新签署 InRelease 文件。

答案2

我也遇到过完全相同的问题。

确保您使用的所有密钥都是二进制格式,而不是 ASCII 装甲格式。如果任何密钥是 ASCII 装甲格式,请使用 - 将其转换为二进制格式

gpg --dearmor

根据-

...我们避免使用 ASCII 装甲文件的原因是它们不能被 SecureApt 直接使用。

另外,请确保在~/.gnupg/gpg.conf文件 -

cert-digest-algo SHA256
digest-algo SHA256

相关内容