Skip to content

Document pgp keys #4125

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Apr 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ io
jedis
json
kb
keyserver
keyslot
keyspace
keysvalues
Expand Down
37 changes: 37 additions & 0 deletions docs/verifying-artifacts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
## Verifying contents
Jedis artifacts published on Maven central are signed. For each artifact, there is an associated signature file with the `.asc` suffix.

## Keys used for signing
```
pub rsa3072 2023-12-17 [SC]
165E63A75659104C72B49129C2B44BE148BDCEC8
uid [ unknown] Redis OSS <oss@redis.com>
sig 3 C2B44BE148BDCEC8 2023-12-17 [self-signature]
```
A copy of this key is stored on the keyserver [MIT keyserver](https://pgp.mit.edu/pks/lookup?op=get&search=0xC2B44BE148BDCEC8)

### Before 2023-12-17
```
pub rsa3072 2023-09-03 [SC]
6BF6C1905C9642D1181D157443543D884CC71C96
uid [ unknown] Redis OSS <oss@redis.com>
sig 3 43543D884CC71C96 2023-09-03 [self-signature]
```
A copy of this key is stored on the keyserver [MIT keyserver](https://pgp.mit.edu/pks/lookup?op=get&search=0x43543D884CC71C96)

### Before 2023-09-03
```
pub rsa3072 2021-06-27 [SC] [expired: 2023-06-27]
1C913D6D36DAD0A679863F5CB68CD0A11D28B97D
uid [ expired] RedisLabs OSS <oss@redislabs.com>
sig 3 B68CD0A11D28B97D 2021-06-27 [self-signature]
```
A copy of this key is stored on the keyserver [MIT keyserver](https://pgp.mit.edu/pks/lookup?op=get&search=0xB68CD0A11D28B97D)
### Before 2021-06-27
```
pub rsa3072 2018-08-12 [SC] [expired: 2020-08-11]
4EC78BD38D30A2E85C02C39C2D62B50EF8D3297A
uid [ expired] Guy Korlad <guy.korland@redislabs.com>
sig 3 2D62B50EF8D3297A 2018-08-12 [self-signature]
```
A copy of this key is stored on the keyserver [MIT keyserver](https://pgp.mit.edu/pks/lookup?op=get&search=0x2D62B50EF8D3297A)
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ nav:
- Search: redisearch.md
- JSON: redisjson.md
- Failover: failover.md
- Verifying artifacts: verifying-artifacts.md
- FAQ: faq.md
- API Reference: https://www.javadoc.io/doc/redis.clients/jedis/latest/index.html
- Tutorials and Examples: tutorials_examples.md
Expand Down
Loading