com.fitbur.bouncycastle.crypto.tls.CompressionMethod Maven / Gradle / Ivy
package com.fitbur.bouncycastle.crypto.tls;
/**
* RFC 2246 6.1
*/
public class CompressionMethod
{
public static final short _null = 0;
/**
* @com.fitburprecated use '_null' instead
*/
public static final short NULL = _null;
/*
* RFC 3749 2
*/
public static final short DEFLATE = 1;
/*
* Values from 224 com.fitburcimal (0xE0) through 255 com.fitburcimal (0xFF)
* inclusive are reserved for private use.
*/
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy