Interface SignatureSigner<S extends SignatureBinary>

    • Method Detail

      • signAfterUpdate

        S signAfterUpdate​(boolean reset)
        Parameters:
        reset - - true to reset after the signature has been generated, false otherwise.
        Returns:
        the final signature generated for the processed data.
      • sign

        default S sign​(byte[] input,
                       boolean reset)
        Parameters:
        input - the data to sign.
        reset - - true to reset after the signature has been generated, false otherwise.
        Returns:
        the final signature generated for the processed data.
      • sign

        default S sign​(byte[] input,
                       int offset,
                       int length,
                       boolean reset)
        Parameters:
        input - the data to sign.
        offset - the index where to start reading data from input.
        length - the number of bytes to read from input.
        reset - - true to reset after the signature has been generated, false otherwise.
        Returns:
        the final signature generated for the processed data.
      • sign

        default S sign​(CryptoBinary input,
                       boolean reset)
        Parameters:
        input - the CryptoBinary containing the (next) data to sign. E.g. a Hash.
        reset - - true to reset after the signature has been generated, false otherwise.
        Returns:
        the final signature generated for the processed data.