3

I'm reading about SRP from this page and came accross the line that says a party computes

v = g^x

I am unfamiliar with reading cryptography texts. Does this mean gx, or g ⊕ x?

  • 3
    Exponentiation. ^ meaning XOR is something common in C-like languages, but not in Math AFAIK. –  Jun 20 '13 at 02:00

2 Answers2

5

In SRP, v = g^x means $v = g^x \mod p$, i.e. exponentiation modulo a large prime $p$.

Henrick Hellström
  • 10,406
  • 1
  • 30
  • 58
1

It depends on the context, but later in this paper, the author makes it clear that he is using it to mean exponentiation:

The ``one-way'' verifier-generator P() becomes a modular exponentiation in GF(n):

P(x) = g^x

GlenPeterson
  • 163
  • 1
  • 7