iText 7 7.2.5 API
|
Interface that needs to be implemented to do the actual signing. More...
Public Member Functions |
|
String | GetHashAlgorithm () |
Returns the hash algorithm. More... |
|
String | GetEncryptionAlgorithm () |
Returns the encryption algorithm used for signing. More... |
|
byte[] | Sign (byte[] message) |
Signs the given message using the encryption algorithm in combination with the hash algorithm. More... |
|
Interface that needs to be implemented to do the actual signing.
Interface that needs to be implemented to do the actual signing. For instance: you'll have to implement this interface if you want to sign a PDF using a smart card.
String iText.Signatures.IExternalSignature.GetEncryptionAlgorithm | ( | ) |
Returns the encryption algorithm used for signing.
Implemented in iText.Signatures.AsymmetricAlgorithmSignature, and iText.Signatures.PrivateKeySignature.
String iText.Signatures.IExternalSignature.GetHashAlgorithm | ( | ) |
Returns the hash algorithm.
Implemented in iText.Signatures.AsymmetricAlgorithmSignature, and iText.Signatures.PrivateKeySignature.
byte [] iText.Signatures.IExternalSignature.Sign | ( | byte[] | message | ) |
Signs the given message using the encryption algorithm in combination with the hash algorithm.
message | The message you want to be hashed and signed. |
Implemented in iText.Signatures.AsymmetricAlgorithmSignature, and iText.Signatures.PrivateKeySignature.