mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
10 lines
190 B
Java
10 lines
190 B
Java
package org.bouncycastle.crypto;
|
|
|
|
/**
|
|
* General interface for a stream cipher that supports skipping.
|
|
*/
|
|
public interface SkippingStreamCipher
|
|
extends StreamCipher, SkippingCipher
|
|
{
|
|
}
|