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

org.bouncycastle.bcpg.SymmetricEncIntegrityPacket Maven / Gradle / Ivy

package org.bouncycastle.bcpg;

import java.io.IOException;

/**
 * A symmetric key encrypted packet with an associated integrity check code.
 */
public class SymmetricEncIntegrityPacket
    extends InputStreamPacket
{
    int        version;

    SymmetricEncIntegrityPacket(
        BCPGInputStream    in)
        throws IOException
    {
        super(in);

        version = in.read();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy