Uses of Class
org.conscrypt.ct.SerializationException
Packages that use SerializationException
-
Uses of SerializationException in org.conscrypt.ct
Methods in org.conscrypt.ct that throw SerializationExceptionModifier and TypeMethodDescriptionstatic DigitallySigned
DigitallySigned.decode
(byte[] input) Decode a TLS encoded DigitallySigned structure.static DigitallySigned
DigitallySigned.decode
(InputStream input) Decode a TLS encoded DigitallySigned structure.static SignedCertificateTimestamp
SignedCertificateTimestamp.decode
(byte[] input, SignedCertificateTimestamp.Origin origin) Decode a TLS encoded SignedCertificateTimestamp structure.static SignedCertificateTimestamp
SignedCertificateTimestamp.decode
(InputStream input, SignedCertificateTimestamp.Origin origin) Decode a TLS encoded SignedCertificateTimestamp structure.void
CertificateEntry.encode
(OutputStream output) TLS encode the CertificateEntry structure.void
SignedCertificateTimestamp.encodeTBS
(OutputStream output, CertificateEntry certEntry) TLS encode the signed part of the SCT, as described by RFC6962 section 3.2.byte[]
SignedCertificateTimestamp.encodeTBS
(CertificateEntry certEntry) TLS encode the signed part of the SCT, as described by RFC6962 section 3.2.static byte
Serialization.readByte
(InputStream input) Read a single byte from the input stream.static byte[]
Serialization.readDEROctetString
(byte[] input) static byte[]
Serialization.readDEROctetString
(InputStream input) static byte[]
Serialization.readFixedBytes
(InputStream input, int length) Read a fixed number of bytes from the input stream.static byte[][]
Serialization.readList
(byte[] input, int listWidth, int elemWidth) static byte[][]
Serialization.readList
(InputStream input, int listWidth, int elemWidth) Read a variable length vector of variable sized elements as described by RFC5246 section 4.3.static long
Serialization.readLong
(InputStream input, int width) Read a number in big endian format from the input stream.static int
Serialization.readNumber
(InputStream input, int width) Read a number in big endian format from the input stream.static byte[]
Serialization.readVariableBytes
(InputStream input, int width) Read a length-prefixed sequence of bytes.static void
Serialization.writeFixedBytes
(OutputStream output, byte[] data) Write a fixed number sequence of bytes to the ouput stream.static void
Serialization.writeNumber
(OutputStream output, long value, int width) Write a number to the output stream.static void
Serialization.writeVariableBytes
(OutputStream output, byte[] data, int width) Write length prefixed sequence of bytes to the ouput stream.