~ubuntu-branches/ubuntu/raring/openvpn/raring-proposed

« back to all changes in this revision

Viewing changes to base64.h

  • Committer: Bazaar Package Importer
  • Author(s): Alberto Gonzalez Iniesta
  • Date: 2006-04-05 12:17:26 UTC
  • mto: (1.3.3 upstream) (10.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20060405121726-btck979dumiwfrte
Tags: upstream-2.0.6
ImportĀ upstreamĀ versionĀ 2.0.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 * SUCH DAMAGE.
32
32
 */
33
33
 
34
 
/* $KTH: base64.h,v 1.2 1999/12/02 16:58:45 joda Exp $ */
35
 
 
36
34
#ifndef _BASE64_H_
37
35
#define _BASE64_H_
38
36
 
39
 
#if NTLM
 
37
#ifdef ENABLE_HTTP_PROXY
40
38
 
41
39
int base64_encode(const void *data, int size, char **str);
42
40
int base64_decode(const char *str, void *data);