diff options
author | David Barksdale <amatus.amongus@gmail.com> | 2012-04-10 09:21:30 -0500 |
---|---|---|
committer | David Barksdale <amatus.amongus@gmail.com> | 2012-04-10 09:24:34 -0500 |
commit | 70ee10bbffadf62fc7652f2a5f89bf252e1b3cd2 (patch) | |
tree | 1119966ab8be27f58fafd638c7d93773af13e5dc | |
parent | 71cde47b7ff3fae491008c115039d8d7499d8635 (diff) |
Fixed documentation on rsa.py.
-rw-r--r-- | flags/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flags/README.md b/flags/README.md index 29545bc..88a133f 100644 --- a/flags/README.md +++ b/flags/README.md @@ -109,7 +109,7 @@ following properties is pickled and sent to the remote peer: name = "Alice" request = "get_flag" keyid = MD5(DER encoding of Alice's public key) - signature = Sig(request + ":" + AsciiHex(keyid), Alice's private key) + signature = Sig(keyid + ":" + request, Alice's private key) If the request property is the string "get_flag" the message must pass these tests before the flag is sent to the remote peer: |