1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-11-22 04:12:06 +01:00

Delegate verification operations to SOPVImpl

This commit is contained in:
Paul Schaub 2024-03-17 15:54:44 +01:00
parent 3ac273757a
commit 44be5aa981
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -6,6 +6,7 @@ package org.pgpainless.sop;
import org.pgpainless.util.ArmoredOutputStreamFactory;
import sop.SOP;
import sop.SOPV;
import sop.operation.Armor;
import sop.operation.ChangeKeyPassword;
import sop.operation.Dearmor;
@ -36,10 +37,12 @@ public class SOPImpl implements SOP {
ArmoredOutputStreamFactory.setVersionInfo(null);
}
private final SOPV sopv = new SOPVImpl();
@Override
@Nonnull
public Version version() {
return new VersionImpl();
return sopv.version();
}
@Override
@ -81,13 +84,13 @@ public class SOPImpl implements SOP {
@Override
@Nonnull
public DetachedVerify detachedVerify() {
return new DetachedVerifyImpl();
return sopv.detachedVerify();
}
@Override
@Nonnull
public InlineVerify inlineVerify() {
return new InlineVerifyImpl();
return sopv.inlineVerify();
}
@Override