Class SealdUtils

  • All Implemented Interfaces:

    
    public final class SealdUtils
    
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final static String parseSessionIdFromFile(String encryptedFilePath) Takes the path to an encrypted file, and returns the session id.
      final static String parseSessionIdFromBytes(ByteArray fileByteArray) Takes an encrypted file as bytes, and returns the session id.
      final static String parseSessionIdFromMessage(String message) Takes an encrypted message, and returns the session id.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • parseSessionIdFromFile

         final static String parseSessionIdFromFile(String encryptedFilePath)

        Takes the path to an encrypted file, and returns the session id.

        Parameters:
        encryptedFilePath - Path to the encrypted file.
      • parseSessionIdFromBytes

         final static String parseSessionIdFromBytes(ByteArray fileByteArray)

        Takes an encrypted file as bytes, and returns the session id.

        Parameters:
        fileByteArray - The encrypted file as ByteArray.
      • parseSessionIdFromMessage

         final static String parseSessionIdFromMessage(String message)

        Takes an encrypted message, and returns the session id.

        Parameters:
        message - The encrypted message.