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

org.pgpainless.sop.SOPVImpl.kt Maven / Gradle / Ivy

The newest version!
// SPDX-FileCopyrightText: 2024 Paul Schaub 
//
// SPDX-License-Identifier: Apache-2.0

package org.pgpainless.sop

import org.pgpainless.util.ArmoredOutputStreamFactory
import sop.SOPV
import sop.operation.DetachedVerify
import sop.operation.InlineVerify
import sop.operation.Version

class SOPVImpl : SOPV {

    init {
        ArmoredOutputStreamFactory.setVersionInfo(null)
    }

    override fun detachedVerify(): DetachedVerify = DetachedVerifyImpl()

    override fun inlineVerify(): InlineVerify = InlineVerifyImpl()

    override fun version(): Version = VersionImpl()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy