Java 类org.bouncycastle.crypto.digests.SkeinEngine 实例源码

项目:gwt-crypto    文件:SkeinMac.java   
public SkeinMac(SkeinMac mac)
{
    this.engine = new SkeinEngine(mac.engine);
}
项目:Aki-SSL    文件:SkeinMac.java   
public SkeinMac(SkeinMac mac)
{
    this.engine = new SkeinEngine(mac.engine);
}
项目:TinyTravelTracker    文件:SkeinMac.java   
public SkeinMac(SkeinMac mac)
{
    this.engine = new SkeinEngine(mac.engine);
}
项目:CryptMeme    文件:SkeinMac.java   
public SkeinMac(SkeinMac mac)
{
    this.engine = new SkeinEngine(mac.engine);
}
项目:irma_future_id    文件:SkeinMac.java   
public SkeinMac(SkeinMac mac)
{
    this.engine = new SkeinEngine(mac.engine);
}
项目:bc-java    文件:SkeinMac.java   
public SkeinMac(SkeinMac mac)
{
    this.engine = new SkeinEngine(mac.engine);
}
项目:gwt-crypto    文件:SkeinMac.java   
/**
 * Constructs a Skein MAC with an internal state size and output size.
 *
 * @param stateSizeBits  the internal state size in bits - one of {@link #SKEIN_256}, {@link #SKEIN_512} or
 *                       {@link #SKEIN_1024}.
 * @param digestSizeBits the output/MAC size to produce in bits, which must be an integral number of bytes.
 */
public SkeinMac(int stateSizeBits, int digestSizeBits)
{
    this.engine = new SkeinEngine(stateSizeBits, digestSizeBits);
}
项目:Aki-SSL    文件:SkeinMac.java   
/**
 * Constructs a Skein MAC with an internal state size and output size.
 *
 * @param stateSizeBits  the internal state size in bits - one of {@link #SKEIN_256}, {@link #SKEIN_512} or
 *                       {@link #SKEIN_1024}.
 * @param digestSizeBits the output/MAC size to produce in bits, which must be an integral number of bytes.
 */
public SkeinMac(int stateSizeBits, int digestSizeBits)
{
    this.engine = new SkeinEngine(stateSizeBits, digestSizeBits);
}
项目:TinyTravelTracker    文件:SkeinMac.java   
/**
 * Constructs a Skein MAC with an internal state size and output size.
 *
 * @param stateSizeBits  the internal state size in bits - one of {@link #SKEIN_256}, {@link #SKEIN_512} or
 *                       {@link #SKEIN_1024}.
 * @param digestSizeBits the output/MAC size to produce in bits, which must be an integral number of bytes.
 */
public SkeinMac(int stateSizeBits, int digestSizeBits)
{
    this.engine = new SkeinEngine(stateSizeBits, digestSizeBits);
}
项目:CryptMeme    文件:SkeinMac.java   
/**
 * Constructs a Skein MAC with an internal state size and output size.
 *
 * @param stateSizeBits  the internal state size in bits - one of {@link #SKEIN_256}, {@link #SKEIN_512} or
 *                       {@link #SKEIN_1024}.
 * @param digestSizeBits the output/MAC size to produce in bits, which must be an integral number of bytes.
 */
public SkeinMac(int stateSizeBits, int digestSizeBits)
{
    this.engine = new SkeinEngine(stateSizeBits, digestSizeBits);
}
项目:irma_future_id    文件:SkeinMac.java   
/**
 * Constructs a Skein MAC with an internal state size and output size.
 *
 * @param stateSizeBits  the internal state size in bits - one of {@link #SKEIN_256}, {@link #SKEIN_512} or
 *                       {@link #SKEIN_1024}.
 * @param digestSizeBits the output/MAC size to produce in bits, which must be an integral number of bytes.
 */
public SkeinMac(int stateSizeBits, int digestSizeBits)
{
    this.engine = new SkeinEngine(stateSizeBits, digestSizeBits);
}
项目:bc-java    文件:SkeinMac.java   
/**
 * Constructs a Skein MAC with an internal state size and output size.
 *
 * @param stateSizeBits  the internal state size in bits - one of {@link #SKEIN_256}, {@link #SKEIN_512} or
 *                       {@link #SKEIN_1024}.
 * @param digestSizeBits the output/MAC size to produce in bits, which must be an integral number of bytes.
 */
public SkeinMac(int stateSizeBits, int digestSizeBits)
{
    this.engine = new SkeinEngine(stateSizeBits, digestSizeBits);
}