All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.media.rtp.EncryptionInfo Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show newest version
package javax.media.rtp;

/**
 * Standard JMF class -- see this class in the JMF Javadoc. Complete.
 *
 * @author Ken Larson
 *
 */
public class EncryptionInfo implements java.io.Serializable
{
    private int type;

    private byte[] key;

    public static final int NO_ENCRYPTION = 0;

    public static final int XOR = 1;

    public static final int MD5 = 2;

    public static final int DES = 3;

    public static final int TRIPLE_DES = 4;

    public EncryptionInfo(int type, byte[] key)
    {
        this.type = type;
        this.key = key;
    }

    public byte[] getKey()
    {
        return key;
    }

    public int getType()
    {
        return type;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy