mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-12-23 03:17:58 +01:00
Add CertificateAuthority interface to enable integration with pgpainless-wot
This commit is contained in:
parent
22b4b93be8
commit
9d93c0f5ae
3 changed files with 180 additions and 0 deletions
|
@ -0,0 +1,139 @@
|
||||||
|
// SPDX-FileCopyrightText: 2023 Paul Schaub <vanitasvitae@fsfe.org>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
|
package org.pgpainless.authentication;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import javax.annotation.Nonnull;
|
||||||
|
|
||||||
|
import org.bouncycastle.openpgp.PGPPublicKeyRing;
|
||||||
|
|
||||||
|
public class CertificateAuthenticity {
|
||||||
|
|
||||||
|
private final String userId;
|
||||||
|
private final PGPPublicKeyRing certificate;
|
||||||
|
private final Map<CertificationChain, Integer> certificationChains = new HashMap<>();
|
||||||
|
private final int targetAmount;
|
||||||
|
|
||||||
|
public CertificateAuthenticity(@Nonnull PGPPublicKeyRing certificate,
|
||||||
|
@Nonnull String userId,
|
||||||
|
@Nonnull Map<CertificationChain, Integer> certificationChains,
|
||||||
|
int targetAmount) {
|
||||||
|
this.userId = userId;
|
||||||
|
this.certificate = certificate;
|
||||||
|
this.certificationChains.putAll(certificationChains);
|
||||||
|
this.targetAmount = targetAmount;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Nonnull
|
||||||
|
public String getUserId() {
|
||||||
|
return userId;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Nonnull
|
||||||
|
public PGPPublicKeyRing getCertificate() {
|
||||||
|
return certificate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getTotalTrustAmount() {
|
||||||
|
int total = 0;
|
||||||
|
for (int v : certificationChains.values()) {
|
||||||
|
total += v;
|
||||||
|
}
|
||||||
|
return total;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the degree of authentication of the binding in percent.
|
||||||
|
* 100% means full authentication.
|
||||||
|
* Values smaller than 100% mean partial authentication.
|
||||||
|
*
|
||||||
|
* @return authenticity in percent
|
||||||
|
*/
|
||||||
|
public int getAuthenticityPercentage() {
|
||||||
|
return targetAmount * 100 / getTotalTrustAmount();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return true, if the binding is authenticated to a sufficient degree.
|
||||||
|
*
|
||||||
|
* @return true if total gathered evidence outweighs the target trust amount.
|
||||||
|
*/
|
||||||
|
public boolean isAuthenticated() {
|
||||||
|
return targetAmount <= getTotalTrustAmount();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return a map of {@link CertificationChain CertificationChains} and their respective effective trust amount.
|
||||||
|
* The effective trust amount of a path might be smaller than its actual trust amount, for example if nodes of a
|
||||||
|
* path are used multiple times.
|
||||||
|
*
|
||||||
|
* @return map of certification chains and their effective trust amounts
|
||||||
|
*/
|
||||||
|
@Nonnull
|
||||||
|
public Map<CertificationChain, Integer> getCertificationChains() {
|
||||||
|
return Collections.unmodifiableMap(certificationChains);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class CertificationChain {
|
||||||
|
private final int trustAmount;
|
||||||
|
private final List<ChainLink> chainLinks = new ArrayList<>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A chain of certifications.
|
||||||
|
*
|
||||||
|
* @param trustAmount actual trust amount of the chain
|
||||||
|
* @param chainLinks links of the chain, starting at the trust-root, ending at the target.
|
||||||
|
*/
|
||||||
|
public CertificationChain(int trustAmount, @Nonnull List<ChainLink> chainLinks) {
|
||||||
|
this.trustAmount = trustAmount;
|
||||||
|
this.chainLinks.addAll(chainLinks);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Actual trust amount of the certification chain.
|
||||||
|
* @return trust amount
|
||||||
|
*/
|
||||||
|
public int getTrustAmount() {
|
||||||
|
return trustAmount;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return all links in the chain, starting at the trust-root and ending at the target.
|
||||||
|
* @return chain links
|
||||||
|
*/
|
||||||
|
@Nonnull
|
||||||
|
public List<ChainLink> getChainLinks() {
|
||||||
|
return Collections.unmodifiableList(chainLinks);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A chain link contains a node in the trust chain.
|
||||||
|
*/
|
||||||
|
public static class ChainLink {
|
||||||
|
private final PGPPublicKeyRing certificate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a chain link.
|
||||||
|
* @param certificate node in the trust chain
|
||||||
|
*/
|
||||||
|
public ChainLink(@Nonnull PGPPublicKeyRing certificate) {
|
||||||
|
this.certificate = certificate;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the certificate that belongs to the node.
|
||||||
|
* @return certificate
|
||||||
|
*/
|
||||||
|
@Nonnull
|
||||||
|
public PGPPublicKeyRing getCertificate() {
|
||||||
|
return certificate;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
// SPDX-FileCopyrightText: 2023 Paul Schaub <vanitasvitae@fsfe.org>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
|
package org.pgpainless.authentication;
|
||||||
|
|
||||||
|
import org.pgpainless.key.OpenPgpFingerprint;
|
||||||
|
|
||||||
|
import javax.annotation.Nonnull;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
public interface CertificateAuthority {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine the authenticity of the binding between the given fingerprint and the userId.
|
||||||
|
* In other words, determine, how much evidence can be gathered, that the certificate with the given
|
||||||
|
* fingerprint really belongs to the user with the given userId.
|
||||||
|
*
|
||||||
|
* @param fingerprint fingerprint of the certificate
|
||||||
|
* @param userId userId
|
||||||
|
* @param email if true, the userId will be treated as an email address and all user-IDs containing
|
||||||
|
* the email address will be matched.
|
||||||
|
* @param referenceTime reference time at which the binding shall be evaluated
|
||||||
|
* @param targetAmount target trust amount (120 = fully authenticated, 240 = doubly authenticated,
|
||||||
|
* 60 = partially authenticated...)
|
||||||
|
* @return information about the authenticity of the binding
|
||||||
|
*/
|
||||||
|
CertificateAuthenticity authenticate(@Nonnull OpenPgpFingerprint fingerprint,
|
||||||
|
@Nonnull String userId,
|
||||||
|
boolean email,
|
||||||
|
@Nonnull Date referenceTime,
|
||||||
|
int targetAmount);
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
// SPDX-FileCopyrightText: 2023 Paul Schaub <vanitasvitae@fsfe.org>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Classes and interfaces related to certificate authenticity.
|
||||||
|
*/
|
||||||
|
package org.pgpainless.authentication;
|
Loading…
Reference in a new issue