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 DigitallySignedDigitallySigned.decode(byte[] input) Decode a TLS encoded DigitallySigned structure.static DigitallySignedDigitallySigned.decode(InputStream input) Decode a TLS encoded DigitallySigned structure.static SignedCertificateTimestampSignedCertificateTimestamp.decode(byte[] input, SignedCertificateTimestamp.Origin origin) Decode a TLS encoded SignedCertificateTimestamp structure.static SignedCertificateTimestampSignedCertificateTimestamp.decode(InputStream input, SignedCertificateTimestamp.Origin origin) Decode a TLS encoded SignedCertificateTimestamp structure.voidCertificateEntry.encode(OutputStream output) TLS encode the CertificateEntry structure.voidSignedCertificateTimestamp.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 byteSerialization.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 longSerialization.readLong(InputStream input, int width) Read a number in big endian format from the input stream.static intSerialization.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 voidSerialization.writeFixedBytes(OutputStream output, byte[] data) Write a fixed number sequence of bytes to the ouput stream.static voidSerialization.writeNumber(OutputStream output, long value, int width) Write a number to the output stream.static voidSerialization.writeVariableBytes(OutputStream output, byte[] data, int width) Write length prefixed sequence of bytes to the ouput stream.