1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-09-27 10:09:33 +02:00
pgpainless/pgpainless-core/src/main/java/org/pgpainless/policy/NotationRegistry.java

51 lines
1.5 KiB
Java
Raw Normal View History

2021-10-07 15:48:52 +02:00
// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
package org.pgpainless.policy;
import java.util.HashSet;
import java.util.Set;
/**
* Registry for known notations.
* Since signature verification must reject signatures with critical notations that are not known to the application,
* there must be some way to tell PGPainless which notations actually are known.
*
* To add a notation name, call {@link #addKnownNotation(String)}.
*/
2021-04-26 13:38:12 +02:00
public class NotationRegistry {
private final Set<String> knownNotations = new HashSet<>();
2021-02-25 19:57:18 +01:00
/**
* Add a known notation name into the registry.
* This will cause critical notations with that name to no longer invalidate the signature.
*
* @param notationName name of the notation
*/
public void addKnownNotation(String notationName) {
if (notationName == null) {
throw new NullPointerException("Notation name MUST NOT be null.");
}
knownNotations.add(notationName);
}
2021-02-25 19:57:18 +01:00
/**
* Return true if the notation name is registered in the registry.
*
* @param notationName name of the notation
* @return true if notation is known, false otherwise.
*/
public boolean isKnownNotation(String notationName) {
return knownNotations.contains(notationName);
}
2021-02-25 19:57:18 +01:00
/**
* Clear all known notations from the registry.
*/
public void clear() {
knownNotations.clear();
}
}