Skip to content

Commit

Permalink
release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Stenzel committed Nov 18, 2015
1 parent bdfd5cd commit 838c4b4
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 3 deletions.
39 changes: 37 additions & 2 deletions README.md
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.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.cryptomator</groupId>
<artifactId>siv-mode</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<name>SIV Mode</name>
<description>RFC 5297 SIV mode: deterministic authenticated encryption</description>

Expand Down

0 comments on commit 838c4b4

Please sign in to comment.