org.cryptomator.siv.package-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of siv-mode Show documentation
Show all versions of siv-mode Show documentation
RFC 5297 SIV mode: deterministic authenticated encryption
/**
* Java implementation of RFC 5297 SIV Authenticated Encryption.
*
* Use an instance of the {@link org.cryptomator.siv.SivMode} class to
* {@link org.cryptomator.siv.SivMode#encrypt(javax.crypto.SecretKey, javax.crypto.SecretKey, byte[], byte[]...) encrypt} or
* {@link org.cryptomator.siv.SivMode#decrypt(javax.crypto.SecretKey, javax.crypto.SecretKey, byte[], byte[]...) decrypt} data.
*/
package org.cryptomator.siv;