Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

Fix cipher table in Java how-to #139

Merged
merged 2 commits into from Oct 3, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 8 additions & 9 deletions docs/JAVA-HOWTO.md
Expand Up @@ -258,15 +258,14 @@ section](KEY-MANAGEMENT.md#key-keyset-and-keysethandle) for details).
The following table summarizes Java implementations of primitives that are
currently available or planned (the latter are listed in brackets).

| Primitive | Implementations |
| ------------------ | ---------------------------------------------- |
| AEAD | AES-EAX, AES-GCM, AES-CTR-HMAC, KMS Envelope, |
: : CHACHA20-POLY1305 :
| Streaming AEAD | AES-GCM-HKDF-STREAMING, AES-CTR-HMAC-STREAMING |
| Deterministic AEAD | AES-SIV |
| MAC | HMAC-SHA2 |
| Digital Signatures | ECDSA over NIST curves, ED25519 |
| Hybrid Encryption | ECIES with AEAD and HKDF, (NaCl CryptoBox) |
| Primitive | Implementations |
| ------------------ | --------------------------------------------------------------- |
| AEAD | AES-EAX, AES-GCM, AES-CTR-HMAC, KMS Envelope, CHACHA20-POLY1305 |
| Streaming AEAD | AES-GCM-HKDF-STREAMING, AES-CTR-HMAC-STREAMING |
| Deterministic AEAD | AES-SIV |
| MAC | HMAC-SHA2 |
| Digital Signatures | ECDSA over NIST curves, ED25519 |
| Hybrid Encryption | ECIES with AEAD and HKDF, (NaCl CryptoBox) |

Exact listings of primitives and their implementations available in a release _x.y.z_ of Tink
are given in a corresponding [`TinkConfig.TINK_x_y_z`](https://github.com/google/tink/blob/master/java/src/main/java/com/google/crypto/tink/config/TinkConfig.java)-variable.
Expand Down