hkp-java/hkp-java/src/main/kotlin/pgp/hkp/OpenPgpImplementation.kt

8 lines
182 B
Kotlin

package pgp.hkp
abstract class OpenPgpImplementation {
abstract fun hexKeyId(keyId: Long): CharSequence
abstract fun hexFingerprint(fingerprint: ByteArray): CharSequence
}