Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.3 KB

README.md

File metadata and controls

38 lines (26 loc) · 1.3 KB

GPG PUB KEYS for SIGNED PKG/Release Verification


GPG PUB KEYS HOLDER : DART OS - DEV TEAM

GPG-CHECKSUM : CHECKSUM


These keys can be used to verify the signed packages from the mentioned author
GPG Keys can directly be fetched from this repository using the below command

Format:

curl https://dart-os.github.io/keys/<KEY-ID>/ | grep -o '[^[:space:]]*\.gpg' | cut -d'>' -f 2 | xargs -I {} wget https://dart-os.github.io/keys/<KEY-ID>/{} -O <LOCAL_DIR_PATH>/{}


[ Strictly For Directly saving the GPG KEY to ADMIN Restrictive Directory Path ]

curl https://dart-os.github.io/keys/<KEY-ID>/ | grep -o '[^[:space:]]*\.gpg' | cut -d'>' -f 2 | xargs -I {} sudo wget https://dart-os.github.io/keys/<KEY-ID>/{} -O <LOCAL_DIR_PATH>/{}

Example For Directly saving GPG Key having `KEY-ID : D0626CA83E6C820B` to `DIR_PATH : /etc/apt/trusted.gpg.d/`
curl https://dart-os.github.io/keys/D0626CA83E6C820B/ | grep -o '[^[:space:]]*\.gpg' | cut -d'>' -f 2 | xargs -I {} sudo wget https://dart-os.github.io/keys/D0626CA83E6C820B/{} -O /etc/apt/trusted.gpg.d/{}

CHECKSUM of GPG Keys of the branch can be generated as

find . -type f -name "*.gpg" -exec sh -c 'echo "MD5: $(md5sum "$1")"; echo "SHA1: $(sha1sum "$1")"; echo "SHA256: $(sha256sum "$1")"' sh {} \; > CHECKSUM