Class RestSignatureTokenConnectionImpl
- java.lang.Object
-
- eu.europa.esig.dss.ws.server.signing.rest.RestSignatureTokenConnectionImpl
-
- All Implemented Interfaces:
RestSignatureTokenConnection,Serializable
public class RestSignatureTokenConnectionImpl extends Object implements RestSignatureTokenConnection
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RestSignatureTokenConnectionImpl()
-
Method Summary
Modifier and Type Method Description RemoteKeyEntrygetKey(String alias)Retrieves a key by its aliasList<RemoteKeyEntry>getKeys()Retrieves all the available keys (private keys entries) from the token.voidsetToken(RemoteSignatureTokenConnection token)SignatureValueDTOsign(ToBeSignedDTO toBeSigned, DigestAlgorithm digestAlgorithm, MaskGenerationFunction mgf, String alias)This method signs thetoBeSigneddata with the digestdigestAlgorithm, the maskmgfand the givenalias.SignatureValueDTOsign(ToBeSignedDTO toBeSigned, DigestAlgorithm digestAlgorithm, String alias)This method signs thetoBeSigneddata with the digestdigestAlgorithmand the givenalias.SignatureValueDTOsignDigest(DigestDTO digest, MaskGenerationFunction mgf, String alias)This method signs thedigestdata with a maskmgfand the givenalias.SignatureValueDTOsignDigest(DigestDTO digest, String alias)This method signs thedigestdata with the givenalias.
-
-
-
Method Detail
-
setToken
public void setToken(RemoteSignatureTokenConnection token)
-
getKeys
public List<RemoteKeyEntry> getKeys() throws DSSException
Description copied from interface:RestSignatureTokenConnectionRetrieves all the available keys (private keys entries) from the token.- Specified by:
getKeysin interfaceRestSignatureTokenConnection- Returns:
- List of encapsulated private keys
- Throws:
DSSException
-
getKey
public RemoteKeyEntry getKey(String alias) throws DSSException
Description copied from interface:RestSignatureTokenConnectionRetrieves a key by its alias- Specified by:
getKeyin interfaceRestSignatureTokenConnection- Parameters:
alias- the key alias to retrieve- Returns:
- the RemoteKeyEntry with the given alias
- Throws:
DSSException
-
sign
public SignatureValueDTO sign(ToBeSignedDTO toBeSigned, DigestAlgorithm digestAlgorithm, String alias) throws DSSException
Description copied from interface:RestSignatureTokenConnectionThis method signs thetoBeSigneddata with the digestdigestAlgorithmand the givenalias.- Specified by:
signin interfaceRestSignatureTokenConnection- Parameters:
toBeSigned- The data that need to be signeddigestAlgorithm- The digest algorithm to be used before signingalias- The key alias to be used- Returns:
- The array of bytes representing the signature value
- Throws:
DSSException
-
sign
public SignatureValueDTO sign(ToBeSignedDTO toBeSigned, DigestAlgorithm digestAlgorithm, MaskGenerationFunction mgf, String alias) throws DSSException
Description copied from interface:RestSignatureTokenConnectionThis method signs thetoBeSigneddata with the digestdigestAlgorithm, the maskmgfand the givenalias.- Specified by:
signin interfaceRestSignatureTokenConnection- Parameters:
toBeSigned- The data that need to be signeddigestAlgorithm- The digest algorithm to be used before signingmgf- the mask generation functionalias- The key alias to be used- Returns:
- The array of bytes representing the signature value
- Throws:
DSSException
-
signDigest
public SignatureValueDTO signDigest(DigestDTO digest, String alias) throws DSSException
Description copied from interface:RestSignatureTokenConnectionThis method signs thedigestdata with the givenalias.- Specified by:
signDigestin interfaceRestSignatureTokenConnection- Parameters:
digest- The digested data that need to be signedalias- The key alias to be used- Returns:
- the signature value representation with the used algorithm and the binary value
- Throws:
DSSException
-
signDigest
public SignatureValueDTO signDigest(DigestDTO digest, MaskGenerationFunction mgf, String alias) throws DSSException
Description copied from interface:RestSignatureTokenConnectionThis method signs thedigestdata with a maskmgfand the givenalias.- Specified by:
signDigestin interfaceRestSignatureTokenConnection- Parameters:
digest- The digested data that need to be signedmgf- the mask generation functionalias- The key alias to be used- Returns:
- the signature value representation with the used algorithm and the binary value
- Throws:
DSSException
-
-