Multiple choice technology security What is the signature of the seal method in the security API? java.lang.String seal(java.lang.String data,long timestamp) throws SecurityException java.lang.String seal(java.lang.String data,long timestamp) throws EncryptionException java.lang.String seal(java.lang.String data) java.lang.String seal(java.lang.String data) throws EncryptionException Reveal answer Fill a bubble to check yourself A Correct answer Explanation The seal method accepts the data to be sealed and a timestamp parameter for time-based validation, returning a sealed String representation. It throws SecurityException when sealing operations fail due to security violations or invalid parameters.