Package com.goterl.lazysodium.interfaces
Interface StreamJava.Native
-
- All Superinterfaces:
Stream.Native
- All Known Implementing Classes:
LazySodiumJava
- Enclosing interface:
- StreamJava
public static interface StreamJava.Native extends Stream.Native
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancryptoStreamSalsa2012(byte[] c, long cLen, byte[] nonce, byte[] key)voidcryptoStreamSalsa2012Keygen(byte[] key)booleancryptoStreamSalsa2012Xor(byte[] cipher, byte[] message, long messageLen, byte[] nonce, byte[] key)booleancryptoStreamSalsa208(byte[] c, long cLen, byte[] nonce, byte[] key)voidcryptoStreamSalsa208Keygen(byte[] key)booleancryptoStreamSalsa208Xor(byte[] cipher, byte[] message, long messageLen, byte[] nonce, byte[] key)booleancryptoStreamXChaCha20(byte[] c, long cLen, byte[] nonce, byte[] key)booleancryptoStreamXChaCha20Ic(byte[] cipher, byte[] message, long messageLen, byte[] nonce, long ic, byte[] key)voidcryptoStreamXChaCha20Keygen(byte[] key)booleancryptoStreamXChaCha20Xor(byte[] cipher, byte[] message, long messageLen, byte[] nonce, byte[] key)-
Methods inherited from interface com.goterl.lazysodium.interfaces.Stream.Native
cryptoStreamChaCha20, cryptoStreamChaCha20Ietf, cryptoStreamChaCha20IetfKeygen, cryptoStreamChaCha20IetfXor, cryptoStreamChacha20IetfXorIc, cryptoStreamChaCha20Keygen, cryptoStreamChaCha20Xor, cryptoStreamChacha20XorIc, cryptoStreamSalsa20, cryptoStreamSalsa20Keygen, cryptoStreamSalsa20Xor, cryptoStreamSalsa20XorIc, cryptoStreamXSalsa20, cryptoStreamXSalsa20Keygen, cryptoStreamXSalsa20Xor
-
-
-
-
Method Detail
-
cryptoStreamSalsa2012Keygen
void cryptoStreamSalsa2012Keygen(byte[] key)
-
cryptoStreamSalsa2012
boolean cryptoStreamSalsa2012(byte[] c, long cLen, byte[] nonce, byte[] key)
-
cryptoStreamSalsa2012Xor
boolean cryptoStreamSalsa2012Xor(byte[] cipher, byte[] message, long messageLen, byte[] nonce, byte[] key)
-
cryptoStreamSalsa208Keygen
void cryptoStreamSalsa208Keygen(byte[] key)
-
cryptoStreamSalsa208
boolean cryptoStreamSalsa208(byte[] c, long cLen, byte[] nonce, byte[] key)
-
cryptoStreamSalsa208Xor
boolean cryptoStreamSalsa208Xor(byte[] cipher, byte[] message, long messageLen, byte[] nonce, byte[] key)
-
cryptoStreamXChaCha20Keygen
void cryptoStreamXChaCha20Keygen(byte[] key)
-
cryptoStreamXChaCha20
boolean cryptoStreamXChaCha20(byte[] c, long cLen, byte[] nonce, byte[] key)
-
cryptoStreamXChaCha20Xor
boolean cryptoStreamXChaCha20Xor(byte[] cipher, byte[] message, long messageLen, byte[] nonce, byte[] key)
-
cryptoStreamXChaCha20Ic
boolean cryptoStreamXChaCha20Ic(byte[] cipher, byte[] message, long messageLen, byte[] nonce, long ic, byte[] key)
-
-