Package com.goterl.lazysodium.interfaces
Interface StreamJava.Lazy
-
- All Superinterfaces:
Stream.Lazy
- All Known Implementing Classes:
LazySodiumJava
- Enclosing interface:
- StreamJava
public static interface StreamJava.Lazy extends Stream.Lazy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]cryptoStream(byte[] nonce, Key key, StreamJava.Method method)KeycryptoStreamKeygen(StreamJava.Method method)java.lang.StringcryptoStreamXor(java.lang.String message, byte[] nonce, Key key, StreamJava.Method method)java.lang.StringcryptoStreamXorDecrypt(java.lang.String cipher, byte[] nonce, Key key, StreamJava.Method method)java.lang.StringcryptoStreamXorIc(java.lang.String message, byte[] nonce, long ic, Key key, StreamJava.Method method)java.lang.StringcryptoStreamXorIcDecrypt(java.lang.String cipher, byte[] nonce, long ic, Key key, StreamJava.Method method)-
Methods inherited from interface com.goterl.lazysodium.interfaces.Stream.Lazy
cryptoStream, cryptoStreamKeygen, cryptoStreamXor, cryptoStreamXorDecrypt, cryptoStreamXorIc, cryptoStreamXorIcDecrypt
-
-
-
-
Method Detail
-
cryptoStreamKeygen
Key cryptoStreamKeygen(StreamJava.Method method)
-
cryptoStream
byte[] cryptoStream(byte[] nonce, Key key, StreamJava.Method method)
-
cryptoStreamXor
java.lang.String cryptoStreamXor(java.lang.String message, byte[] nonce, Key key, StreamJava.Method method)
-
cryptoStreamXorDecrypt
java.lang.String cryptoStreamXorDecrypt(java.lang.String cipher, byte[] nonce, Key key, StreamJava.Method method)
-
cryptoStreamXorIc
java.lang.String cryptoStreamXorIc(java.lang.String message, byte[] nonce, long ic, Key key, StreamJava.Method method)
-
cryptoStreamXorIcDecrypt
java.lang.String cryptoStreamXorIcDecrypt(java.lang.String cipher, byte[] nonce, long ic, Key key, StreamJava.Method method)
-
-