Interface CryptoBinaryFormat

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static String FORMAT_COMPACT
      The format for compact binary representation.
      static String FORMAT_ENCODED
      The format for the encoded binary representation.
    • Field Detail

      • FORMAT_ENCODED

        static final String FORMAT_ENCODED
        The format for the encoded binary representation. This is the most universal, portable and standardized format. However, it is also a large representation according to the length. If you want to store the raw data in the most efficient way use FORMAT_COMPACT instead.
        See Also:
        Key.getEncoded(), Constant Field Values
      • FORMAT_COMPACT

        static final String FORMAT_COMPACT
        The format for compact binary representation. This is the smallest representation that is supported.
        See Also:
        Constant Field Values