1

What property of a cryptographic function is described below?

B = F(A) A = F(B)

2 Answers2

3

$F$ is an involution. You don't want this property for a block cipher since the function doesn't look "random". On the other hand, a stream cipher works exactly that way, but then it's a bit misleading to think of it as a function $F$: the function is missing an important parameter, namely time.

Yuval Filmus
  • 57,157
1

Most mechanical cipher machines use a reciprocal cipher, so the machine doesn't need a separate "encode mode" and "decode mode". A reciprocal cipher is an involution.

David Cary
  • 1,817