All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gnupg.GnuPGDummyExtension Maven / Gradle / Ivy

There is a newer version: 1.6.7
Show newest version
// SPDX-FileCopyrightText: 2022 Paul Schaub 
//
// SPDX-License-Identifier: Apache-2.0

package org.gnupg;

import org.bouncycastle.bcpg.S2K;

public enum GnuPGDummyExtension {

    /**
     * Do not store the secret part at all.
     */
    NO_PRIVATE_KEY(S2K.GNU_PROTECTION_MODE_NO_PRIVATE_KEY),

    /**
     * A stub to access smartcards.
     */
    DIVERT_TO_CARD(S2K.GNU_PROTECTION_MODE_DIVERT_TO_CARD),
    ;

    private final int id;

    GnuPGDummyExtension(int id) {
        this.id = id;
    }

    public int getId() {
        return id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy