~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/cslib/CSEncode.h

  • Committer: Brian Aker
  • Date: 2010-10-22 17:44:34 UTC
  • mto: This revision was merged to the branch mainline in revision 1873.
  • Revision ID: brian@tangent.org-20101022174434-q8fjovcpclzqer7n
TableShare is no longer in the house (i.e. we no longer directly have a copy
of it in cursor).

One more bit of the knot now gone.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include "CSSha1.h"
26
26
#include "CSMd5.h"
27
27
 
28
 
// If the base64 buffer passed in is NULL then the function will allocate one the correct size for the data.
29
 
// In this caser the caller must free the buffer using cs_free().
30
 
// If a buffer is suppled but is too small en exception will be thrown.
31
 
char *base64Encode(const void *data, size_t len, char *encode_buffer = NULL, size_t encode_buffer_len = 0);
32
 
void *base64Decode(const char *data, size_t len, void *decode_buffer = NULL, size_t decode_buffer_len = 0);
33
 
 
34
 
char *base64UrlEncode(const void *data, size_t len, char *encode_buffer = NULL, size_t encode_buffer_len = 0);
35
 
void *base64UrlDecode(const char *data, size_t len, void *decode_buffer = NULL, size_t decode_buffer_len = 0);
 
28
char *base64Encode(const void *data, size_t len);
 
29
void *base64Decode(const char *data, size_t len);
36
30
 
37
31
CSString *signature(const char *text, const char *key);
38
32
CSString *urlEncode(CSString *src);