Skip to content

Commit

Permalink
Remove TODO in ConfigurationV0.
Browse files Browse the repository at this point in the history
We've decided that Configurations in different languages may support slightly different set of algorithms. So there is no need for this Todo anymore.

PiperOrigin-RevId: 618762732
Change-Id: I473b58057ba34030e4b05a720aad53c223b91094
  • Loading branch information
juergw authored and copybara-github committed Mar 25, 2024
1 parent fbb182c commit fe0cea5
Showing 1 changed file with 27 additions and 21 deletions.
48 changes: 27 additions & 21 deletions src/main/java/com/google/crypto/tink/ConfigurationV0.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,54 +95,60 @@
* ConfigurationV0 contains the following primitives and algorithms:
*
* <p>MAC/ChunkedMAC:
*
* <ul>
* <li>AesCmac</li>
* <li>Hmac</li>
* <li>AesCmac
* <li>Hmac
* </ul>
*
* <p>AEAD:
*
* <ul>
* <li>AesCtrHmac</li>
* <li>AesEax</li>
* <li>AesGcm</li>
* <li>AesGcmSiv</li>
* <li>ChaCha20Poly1305</li>
* <li>XChaCha20Poly1305</li>
* <li>AesCtrHmac
* <li>AesEax
* <li>AesGcm
* <li>AesGcmSiv
* <li>ChaCha20Poly1305
* <li>XChaCha20Poly1305
* </ul>
*
* <p>DAEAD:
*
* <ul>
* <li>AesSiv</li>
* <li>AesSiv
* </ul>
*
* <p>StreamingAEAD:
*
* <ul>
* <li>AesCtrHmac</li>
* <li>AesGcmHkdf</li>
* <li>AesCtrHmac
* <li>AesGcmHkdf
* </ul>
*
* <p>Hybrid:
*
* <ul>
* <li>Ecies</li>
* <li>Hpke</li>
* <li>Ecies
* <li>Hpke
* </ul>
*
* <p>PRF:
*
* <ul>
* <li>AesCmac</li>
* <li>Hkdf</li>
* <li>Hmac</li>
* <li>AesCmac
* <li>Hkdf
* <li>Hmac
* </ul>
*
* <p>Signatures:
*
* <ul>
* <li>Ed25519</li>
* <li>Esdsa</li>
* <li>RsaSsaPkcs1</li>
* <li>RsaSsaPss</li>
* <li>Ed25519
* <li>Esdsa
* <li>RsaSsaPkcs1
* <li>RsaSsaPss
* </ul>
*/
// TODO(b/265864709): add cross-language tests for this class.
public class ConfigurationV0 {
private ConfigurationV0() {}

Expand Down

0 comments on commit fe0cea5

Please sign in to comment.