Questions tagged [siv-authenticated-encryption]

In cryptography, SIV (Synthetic Initialization Vector) is a block cipher mode for authenticated encryption

SIV (Synthetic Initialization Vector) is a block cipher mode for in which the initialization vector can be calculated deterministically.

References

1 questions
5
votes
1 answer

How to use Bouncycastle's CMac

I'm trying to use BouncyCastle's CMac implementation but apparently I'm doing it wrong. At least the following unit test (based on RFC 5297 test vectors) fails: @Test public void testCMacOfZeros() { byte[] key = {(byte) 0xff, (byte) 0xfe, (byte)…
Sebastian S
  • 4,420
  • 4
  • 34
  • 63