terl / lazysodium-android

An Android implementation of the Libsodium cryptography library. For the lazy dev.
https://github.com/terl/lazysodium-java/wiki
Mozilla Public License 2.0
108 stars 25 forks source link

crypto_stream_chacha20_xor seems not be exposed #10

Closed Jeyhey closed 6 years ago

Jeyhey commented 6 years ago

I am trying to use the function crypto_stream_chacha20_xor of libsodium but can't find it. Is there a way to use this function?

gurpreet- commented 6 years ago

Hello @Jeyhey

This is one of two things left to do on my features list. It's not been implemented yet because I had some trouble with stream ciphers on Android and resolved to implement them later.

I will try and get these last features done tonight.

gurpreet- commented 6 years ago

Hello I've added the ChaCha20 implementation. Will add the others soon.

Jeyhey commented 6 years ago

That was fast : )! Thank you!