2005-07-26 18:36:18 UTC
> I'm curious to know how it works. In particular, I don't
> know what the various combination of (this , that )
> <commas> and (this + that) signify.
Are you talking about the cryptography description? Not sure what you are referring to with the "<commas>", but these are cryptographic notations. The "+" indicates concatenation.
12. A sends B: RSA(pubkey_B,EsKeyA + randB)
For example this notation means that A sends to B a message that is the RSA of a data field that A calculates using B's public key. The data field consists of the session key EsKeyA concatenated with a random number that B sent previously, randB.
Or something like that...