-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sebastian Stenzel
committed
Nov 18, 2015
1 parent
bdfd5cd
commit 838c4b4
Showing
2 changed files
with
38 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,37 @@ | ||
# siv-mode | ||
RFC 5297 SIV mode of operation in Java | ||
# RFC 5297 SIV mode of operation in Java | ||
|
||
[![Build Status](https://travis-ci.org/cryptomator/siv-mode.svg?branch=master)](https://travis-ci.org/cryptomator/siv-mode) | ||
[![Release](https://img.shields.io/github/release/org.cryptomator/siv-mode.svg?label=maven)](https://jitpack.io/#org.cryptomator/siv-mode) | ||
|
||
|
||
## Features | ||
- Depends only on BouncyCastle | ||
- Passes official RFC 5297 test vectors | ||
- Constant time authentication (also on JDK7) | ||
- Defaults on AES, but supports any block cipher | ||
|
||
## Dependencies: | ||
- JDK 7+ | ||
- BouncyCastle | ||
|
||
## Maven integration | ||
|
||
``` | ||
<repositories> | ||
<repository> | ||
<id>jitpack.io</id> | ||
<url>https://jitpack.io</url> | ||
</repository> | ||
</repositories> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.cryptomator</groupId> | ||
<artifactId>siv-mode</artifactId> | ||
<version>1.0.0</version> | ||
</dependency> | ||
</dependencies> | ||
``` | ||
|
||
## License | ||
Distributed under the MIT X Consortium license. See the LICENSE file for more info. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters