Welcome to mirror list, hosted at ThFree Co, Russian Federation.

KeyFingerPrintCalculator.java « operator « openpgp « spongycastle « org « java « main « src « pg - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5a8a26961d9b01d32586192e4b69c743e5f129a (plain)
1
2
3
4
5
6
7
8
9
10
package org.spongycastle.openpgp.operator;

import org.spongycastle.bcpg.PublicKeyPacket;
import org.spongycastle.openpgp.PGPException;

public interface KeyFingerPrintCalculator
{
    byte[] calculateFingerprint(PublicKeyPacket publicPk)
        throws PGPException;
}