mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-10 14:35:59 +01:00
Add RevocationState enum
This commit is contained in:
parent
d0ad0ac3e4
commit
3f40fb99ef
1 changed files with 23 additions and 0 deletions
|
@ -0,0 +1,23 @@
|
||||||
|
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
|
package org.pgpainless.algorithm;
|
||||||
|
|
||||||
|
public enum RevocationState {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Certificate is not revoked.
|
||||||
|
*/
|
||||||
|
notRevoked,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Certificate is revoked with a soft revocation.
|
||||||
|
*/
|
||||||
|
softRevoked,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Certificate is revoked with a hard revocation.
|
||||||
|
*/
|
||||||
|
hardRevoked
|
||||||
|
}
|
Loading…
Reference in a new issue