-
- All Implemented Interfaces:
-
com.goterl.lazysodium.interfaces.Stream.Lazy
public interface StreamJava.Lazy implements Stream.Lazy
-
-
Method Summary
Modifier and Type Method Description abstract KeycryptoStreamKeygen(StreamJava.Method method)abstract Array<byte>cryptoStream(Array<byte> nonce, Key key, StreamJava.Method method)abstract StringcryptoStreamXor(String message, Array<byte> nonce, Key key, StreamJava.Method method)abstract StringcryptoStreamXorDecrypt(String cipher, Array<byte> nonce, Key key, StreamJava.Method method)abstract StringcryptoStreamXorIc(String message, Array<byte> nonce, long ic, Key key, StreamJava.Method method)abstract StringcryptoStreamXorIcDecrypt(String cipher, Array<byte> nonce, long ic, Key key, StreamJava.Method method)-
Methods inherited from class com.goterl.lazysodium.interfaces.Stream.Lazy
cryptoStream, cryptoStream, cryptoStreamKeygen, cryptoStreamXor, cryptoStreamXorDecrypt, cryptoStreamXorIc, cryptoStreamXorIcDecrypt -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
cryptoStreamKeygen
abstract Key cryptoStreamKeygen(StreamJava.Method method)
-
cryptoStream
abstract Array<byte> cryptoStream(Array<byte> nonce, Key key, StreamJava.Method method)
-
cryptoStreamXor
abstract String cryptoStreamXor(String message, Array<byte> nonce, Key key, StreamJava.Method method)
-
cryptoStreamXorDecrypt
abstract String cryptoStreamXorDecrypt(String cipher, Array<byte> nonce, Key key, StreamJava.Method method)
-
cryptoStreamXorIc
abstract String cryptoStreamXorIc(String message, Array<byte> nonce, long ic, Key key, StreamJava.Method method)
-
cryptoStreamXorIcDecrypt
abstract String cryptoStreamXorIcDecrypt(String cipher, Array<byte> nonce, long ic, Key key, StreamJava.Method method)
-
-
-
-