Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SkippingStreamCipher.java « crypto « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e704bada901180e54abd4cdf6fce20eb8348849 (plain)
1
2
3
4
5
6
7
8
9
package org.spongycastle.crypto;

/**
 * General interface for a stream cipher that supports skipping.
 */
public interface SkippingStreamCipher
    extends StreamCipher, SkippingCipher
{
}