Home | History | Annotate | Download | only in crypto
      1 package org.bouncycastle.crypto;
      2 
      3 /**
      4  * General interface for a stream cipher that supports skipping.
      5  */
      6 public interface SkippingStreamCipher
      7     extends StreamCipher, SkippingCipher
      8 {
      9 }
     10