mirror of
https://codeberg.org/PGPainless/cert-d-java.git
synced 2024-11-22 07:22:06 +01:00
Add badges and info to readme files
This commit is contained in:
parent
5222c54536
commit
9efcae77de
3 changed files with 21 additions and 1 deletions
12
pgp-cert-d-java-jdbc-sqlite-lookup/README.md
Normal file
12
pgp-cert-d-java-jdbc-sqlite-lookup/README.md
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<!--
|
||||||
|
SPDX-FileCopyrightText: 2022 Paul Schaub <info@pgpainless.org>
|
||||||
|
|
||||||
|
SPDX-License-Identifier: Apache-2.0
|
||||||
|
-->
|
||||||
|
|
||||||
|
# SQLite backed Subkey-ID Lookup
|
||||||
|
|
||||||
|
[![javadoc](https://javadoc.io/badge2/org.pgpainless/pgp-cert-d-java-jdbc-sqlite-lookup/javadoc.svg)](https://javadoc.io/doc/org.pgpainless/pgp-cert-d-java-jdbc-sqlite-lookup)
|
||||||
|
[![Maven Central](https://badgen.net/maven/v/maven-central/org.pgpainless/pgp-cert-d-java-jdbc-sqlite-lookup)](https://search.maven.org/artifact/org.pgpainless/pgp-cert-d-java-jdbc-sqlite-lookup)
|
||||||
|
|
||||||
|
Implementation of `pgp-certificate-store`'s `SubkeyLookup` class using an SQLite database accessed through `sqlite-jdbc`.
|
|
@ -6,6 +6,9 @@ SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
# Shared PGP Certificate Directory for Java
|
# Shared PGP Certificate Directory for Java
|
||||||
|
|
||||||
|
[![javadoc](https://javadoc.io/badge2/org.pgpainless/pgp-cert-d-java/javadoc.svg)](https://javadoc.io/doc/org.pgpainless/pgp-cert-d-java)
|
||||||
|
[![Maven Central](https://badgen.net/maven/v/maven-central/org.pgpainless/pgp-cert-d-java)](https://search.maven.org/artifact/org.pgpainless/pgp-cert-d-java)
|
||||||
|
|
||||||
Backend-agnostic implementation of the [Shared PGP Certificate Directory Specification](https://sequoia-pgp.gitlab.io/pgp-cert-d/).
|
Backend-agnostic implementation of the [Shared PGP Certificate Directory Specification](https://sequoia-pgp.gitlab.io/pgp-cert-d/).
|
||||||
This module implements the non-OpenPGP parts of the spec, e.g. locating the directory, resolving certificate file paths,
|
This module implements the non-OpenPGP parts of the spec, e.g. locating the directory, resolving certificate file paths,
|
||||||
locking the directory for writes etc.
|
locking the directory for writes etc.
|
||||||
|
@ -14,3 +17,5 @@ To get a useful implementation, a backend implementation such as `pgpainless-cer
|
||||||
support for reading and merging certificates.
|
support for reading and merging certificates.
|
||||||
|
|
||||||
`pgp-cert-d-java` can be used as an implementation of `pgp-certificate-store`.
|
`pgp-cert-d-java` can be used as an implementation of `pgp-certificate-store`.
|
||||||
|
|
||||||
|
Note: This is a library module. For a command line interface, see [pgpainless-cert-d-cli](https://github.com/pgpainless/cert-d-pgpainless/tree/main/pgpainless-cert-d-cli).
|
|
@ -6,5 +6,8 @@ SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
# PGP Certificate Store Definitions
|
# PGP Certificate Store Definitions
|
||||||
|
|
||||||
|
[![javadoc](https://javadoc.io/badge2/org.pgpainless/pgp-certificate-store/javadoc.svg)](https://javadoc.io/doc/org.pgpainless/pgp-certificate-store)
|
||||||
|
[![Maven Central](https://badgen.net/maven/v/maven-central/org.pgpainless/pgp-certificate-store)](https://search.maven.org/artifact/org.pgpainless/pgp-certificate-store)
|
||||||
|
|
||||||
This module contains API definitions for an OpenPGP certificate store.
|
This module contains API definitions for an OpenPGP certificate store.
|
||||||
A certificate store is used to store public key certificates only.
|
A certificate store is used to store public key certificates only.
|
||||||
|
|
Loading…
Reference in a new issue