static DigitallySigned |
DigitallySigned.decode(byte[] input) |
Decode a TLS encoded DigitallySigned structure.
|
static DigitallySigned |
DigitallySigned.decode(java.io.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(java.io.InputStream input,
SignedCertificateTimestamp.Origin origin) |
Decode a TLS encoded SignedCertificateTimestamp structure.
|
void |
CertificateEntry.encode(java.io.OutputStream output) |
TLS encode the CertificateEntry structure.
|
void |
SignedCertificateTimestamp.encodeTBS(java.io.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(java.io.InputStream input) |
Read a single byte from the input stream.
|
static byte[] |
Serialization.readDEROctetString(byte[] input) |
|
static byte[] |
Serialization.readDEROctetString(java.io.InputStream input) |
|
static byte[] |
Serialization.readFixedBytes(java.io.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(java.io.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(java.io.InputStream input,
int width) |
Read a number in big endian format from the input stream.
|
static int |
Serialization.readNumber(java.io.InputStream input,
int width) |
Read a number in big endian format from the input stream.
|
static byte[] |
Serialization.readVariableBytes(java.io.InputStream input,
int width) |
Read a length-prefixed sequence of bytes.
|
static void |
Serialization.writeFixedBytes(java.io.OutputStream output,
byte[] data) |
Write a fixed number sequence of bytes to the ouput stream.
|
static void |
Serialization.writeNumber(java.io.OutputStream output,
long value,
int width) |
Write a number to the output stream.
|
static void |
Serialization.writeVariableBytes(java.io.OutputStream output,
byte[] data,
int width) |
Write length prefixed sequence of bytes to the ouput stream.
|