~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: lbieber
  • Date: 2010-10-07 21:44:19 UTC
  • mfrom: (1812.4.2 staging)
  • mto: This revision was merged to the branch mainline in revision 1822.
  • Revision ID: lbieber@orisndriz08-20101007214419-0w3k9dlvlnt57tah
Merge Brian - fixu bug #655558: SELECT 102/(1-1) should error on divide by zero          

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 #ifndef __CSENCODE_H__
2
2
#define __CSENCODE_H__
3
 
/* Copyright (C) 2008 PrimeBase Technologies GmbH, Germany
 
3
/* Copyright (c) 2008 PrimeBase Technologies GmbH, Germany
4
4
 *
5
5
 * PrimeBase S3Daemon
6
6
 *
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);