~clint-fewbar/ubuntu/precise/squid3/ignore-sighup-early

« back to all changes in this revision

Viewing changes to helpers/negotiate_auth/squid_kerb_auth/base64.h

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2010-05-04 11:15:49 UTC
  • mfrom: (1.3.1 upstream)
  • mto: (20.3.1 squeeze) (21.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20100504111549-1apjh2g5sndki4te
Tags: upstream-3.1.3
ImportĀ upstreamĀ versionĀ 3.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * Markus Moeller has modified the following code from Squid
3
3
 */
4
4
 
5
 
void base64_decode(char* result, const char *data, int result_size);
6
 
void base64_encode(char* result, const char *data, int result_size, int data_size);
 
5
void ska_base64_decode(char* result, const char *data, int result_size);
 
6
void ska_base64_encode(char* result, const char *data, int result_size, int data_size);
7
7
 
8
 
int base64_encode_len(int len);
9
 
int base64_decode_len(const char *data);
 
8
int ska_base64_encode_len(int len);
 
9
int ska_base64_decode_len(const char *data);