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