r

ratchet-android

Virgil Security is presenting an implementation of the [Double Ratchet](https://signal.org/docs/specifications/doubleratchet/) algorithm, which is used by parties to exchange encrypted messages based on a shared secret key. The implementation includes: - **Virgil Perfect Forward Secrecy (PFS) service** – a standalone web-service that is dedicated to managing one-time keys and long-time keys that are based on their Identity Public Keys (public keys that are contained in user cards published on Virgil Cards service); - **Ratchet SDK** – interacts with PFS service for publishing and managing one-time keys and long-time keys and interacts with Virgil Cards service for retrieving user's indentity cards which the OTK and LTK are based on. The parties derive new keys for every Double Ratchet message so that previous private keys cannot be calculated from new ones. The parties that participate in the communication also send Diffie-Hellman public values attached to their messages. The results of Diffie-Hellman calculations are mixed into the derived keys so that the new private keys cannot be calculated from the previous ones.
https://www.virgilsecurity.com/
Virgil Security, Inc. license
Danylo Oliinyk Andrii Iakovenko
文件下载
文件名 操作
ratchet-android-0.1.2.pom 下载
ratchet-android-0.1.2-sources.jar 下载
Apache Maven
<dependency>
  <groupId>com.virgilsecurity</groupId>
  <artifactId>ratchet-android</artifactId>
  <version>0.1.2</version>
  <type>aar</type>
</dependency>
Gradle Groovy
implementation 'com.virgilsecurity:ratchet-android:0.1.2'
Gradle Kotlin
implementation("com.virgilsecurity:ratchet-android:0.1.2")
Scala SBT
libraryDependencies += "com.virgilsecurity" % "ratchet-android" % "0.1.2"
Groovy Grape
@Grapes(
  @Grab(group='com.virgilsecurity', module='ratchet-android', version='0.1.2')
)
Apache Ivy
<dependency org="com.virgilsecurity" name="ratchet-android" rev="0.1.2" />
Leiningen
[com.virgilsecurity/ratchet-android "0.1.2"]
Apache Buildr
'com.virgilsecurity:ratchet-android:jar:0.1.2'