#include <libzrtpcpp/crypto/ZrtpDH.h>#include <libzrtpcpp/crypto/hmac256.h>#include <libzrtpcpp/crypto/sha256.h>#include <libzrtpcpp/crypto/aesCFB.h>#include <libzrtpcpp/ZRtp.h>#include <libzrtpcpp/ZrtpStateClass.h>#include <libzrtpcpp/ZIDFile.h>#include <libzrtpcpp/ZIDRecord.h>#include <libzrtpcpp/Base32.h>Go to the source code of this file.
Functions | |
| static void | hexdump (const char *title, const unsigned char *s, int l) |
| int | ZrtpAvailable () |
|
||||||||||||||||
|
Definition at line 33 of file ZRtp.cxx. 00033 { 00034 int n=0; 00035 00036 if (s == NULL) return; 00037 00038 fprintf(stderr, "%s",title); 00039 for( ; n < l ; ++n) 00040 { 00041 if((n%16) == 0) 00042 fprintf(stderr, "\n%04x",n); 00043 fprintf(stderr, " %02x",s[n]); 00044 } 00045 fprintf(stderr, "\n"); 00046 }
|
|
|
Definition at line 55 of file ZRtp.cxx.
|