Package io.quarkus.vault.transit
Class SignVerifyOptions
- java.lang.Object
-
- io.quarkus.vault.transit.SignVerifyOptions
-
public class SignVerifyOptions extends Object
-
-
Constructor Summary
Constructors Constructor Description SignVerifyOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetHashAlgorithm()StringgetMarshalingAlgorithm()BooleangetPrehashed()StringgetSignatureAlgorithm()SignVerifyOptionssetHashAlgorithm(String hashAlgorithm)SignVerifyOptionssetMarshalingAlgorithm(String marshalingAlgorithm)SignVerifyOptionssetPrehashed(Boolean prehashed)SignVerifyOptionssetSignatureAlgorithm(String signatureAlgorithm)
-
-
-
Method Detail
-
getSignatureAlgorithm
public String getSignatureAlgorithm()
-
setSignatureAlgorithm
public SignVerifyOptions setSignatureAlgorithm(String signatureAlgorithm)
-
getHashAlgorithm
public String getHashAlgorithm()
-
setHashAlgorithm
public SignVerifyOptions setHashAlgorithm(String hashAlgorithm)
-
getPrehashed
public Boolean getPrehashed()
-
setPrehashed
public SignVerifyOptions setPrehashed(Boolean prehashed)
-
getMarshalingAlgorithm
public String getMarshalingAlgorithm()
-
setMarshalingAlgorithm
public SignVerifyOptions setMarshalingAlgorithm(String marshalingAlgorithm)
-
-