~ubuntu-branches/ubuntu/oneiric/libotr/oneiric-security

« back to all changes in this revision

Viewing changes to README

  • Committer: Bazaar Package Importer
  • Author(s): Thibaut VARENE
  • Date: 2006-01-02 19:52:18 UTC
  • mfrom: (2.1.1 dapper)
  • Revision ID: james.westby@ubuntu.com-20060102195218-wb8803196y9mycx6
Tags: 3.0.0-2
Fix typo: "malformed messahes" (Closes: #345400)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
              Off-the-Record Messaging Library and Toolkit
2
 
                          v2.0.2,  3 May 2005
 
2
                          v3.0.0,  2 Nov 2005
3
3
 
4
4
This is a library and toolkit which implements Off-the-Record (OTR) Messaging.
5
5
 
74
74
UI functions when it calls them.  You can use this to keep track of
75
75
state or any other information.
76
76
 
77
 
NOTE: if you use automatic (stack) variables for the opdata, or if you
78
 
use heap variables that may get free()d, be extra careful in the
79
 
confirm_fingerprint function.  You need to make sure the opdata is not
80
 
deallocated before the user chooses whether to accept the fingerprint or
81
 
not.
82
 
 
83
77
You will need to include proto.h and message.h, and you can find a list
84
78
of the UI functions in message.h.
85
79
 
185
179
 
186
180
 - otr_parse
187
181
   - Parse OTR messages given on stdin, showing the values of all the
188
 
     fields in OTR Key Exchange Messages and OTR Data Messages.
 
182
     fields in OTR protocol messages.
189
183
 
190
184
 - otr_sesskeys our_privkey their_pubkey
191
185
   - Shows our public key, the session id, two AES and two MAC keys
213
207
     you can still forge messages of your choice using the otr_readforge
214
208
     command, above.
215
209
 
216
 
 - otr_remac mackey keyid keyid pubkey counter encdata revealed_mackeys
 
210
 - otr_remac mackey flags keyid keyid pubkey counter encdata revealed_mackeys
217
211
   - Make a new OTR Data Message, with the given pieces (note that the
218
212
     data part is already encrypted).  MAC it with the given mackey.
219
213