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
The REST implementation of server signing
- See Also:
-
Constructor Summary
ConstructorDescriptionDefault construction instantiating object with null token connection -
Method Summary
Modifier and TypeMethodDescriptionRetrieves a key by its aliasgetKeys()
Retrieves all the available keys (private keys entries) from the token.void
Sets remote token connectionsign
(ToBeSignedDTO toBeSigned, DigestAlgorithm digestAlgorithm, MaskGenerationFunction mgf, String alias) This method signs thetoBeSigned
data with the digestdigestAlgorithm
, the maskmgf
and the givenalias
.sign
(ToBeSignedDTO toBeSigned, DigestAlgorithm digestAlgorithm, String alias) This method signs thetoBeSigned
data with the digestdigestAlgorithm
and the givenalias
.sign
(ToBeSignedDTO toBeSigned, SignatureAlgorithm signatureAlgorithm, String alias) This method signs thetoBeSigned
data with the digestdigestAlgorithm
and the givenalias
.signDigest
(DigestDTO digest, MaskGenerationFunction mgf, String alias) This method signs thedigest
data with a maskmgf
and the givenalias
.signDigest
(DigestDTO digest, SignatureAlgorithm signatureAlgorithm, String alias) This method signs thedigest
data with a maskmgf
and the givenalias
.signDigest
(DigestDTO digest, String alias) This method signs thedigest
data with the givenalias
.
-
Constructor Details
-
RestSignatureTokenConnectionImpl
public RestSignatureTokenConnectionImpl()Default construction instantiating object with null token connection
-
-
Method Details
-
setToken
Sets remote token connection- Parameters:
token
-RemoteSignatureTokenConnection
-
getKeys
Description copied from interface:RestSignatureTokenConnection
Retrieves all the available keys (private keys entries) from the token.- Specified by:
getKeys
in interfaceRestSignatureTokenConnection
- Returns:
- List of encapsulated private keys
- Throws:
DSSException
-
getKey
Description copied from interface:RestSignatureTokenConnection
Retrieves a key by its alias- Specified by:
getKey
in 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:RestSignatureTokenConnection
This method signs thetoBeSigned
data with the digestdigestAlgorithm
and the givenalias
.- Specified by:
sign
in 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:RestSignatureTokenConnection
This method signs thetoBeSigned
data with the digestdigestAlgorithm
, the maskmgf
and the givenalias
.- Specified by:
sign
in 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
-
sign
public SignatureValueDTO sign(ToBeSignedDTO toBeSigned, SignatureAlgorithm signatureAlgorithm, String alias) Description copied from interface:RestSignatureTokenConnection
This method signs thetoBeSigned
data with the digestdigestAlgorithm
and the givenalias
.- Specified by:
sign
in interfaceRestSignatureTokenConnection
- Parameters:
toBeSigned
- The data that need to be signedsignatureAlgorithm
- The signature algorithm to be used for signingalias
- The key alias to be used- Returns:
- The array of bytes representing the signature value
-
signDigest
Description copied from interface:RestSignatureTokenConnection
This method signs thedigest
data with the givenalias
.- Specified by:
signDigest
in 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:RestSignatureTokenConnection
This method signs thedigest
data with a maskmgf
and the givenalias
.- Specified by:
signDigest
in 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
-
signDigest
public SignatureValueDTO signDigest(DigestDTO digest, SignatureAlgorithm signatureAlgorithm, String alias) Description copied from interface:RestSignatureTokenConnection
This method signs thedigest
data with a maskmgf
and the givenalias
.- Specified by:
signDigest
in interfaceRestSignatureTokenConnection
- Parameters:
digest
- The digested data that need to be signedsignatureAlgorithm
- The signature algorithm to be used for signingalias
- The key alias to be used- Returns:
- the signature value representation with the used algorithm and the binary value
-