/*
#ifndef _DES_H
#define _DES_H

#ifdef __cplusplus
extern "C" {
#endif
    
    char * base64_encode( const unsigned char * bindata, char * base64, int binlength );
    
    int base64_decode( const char * base64, unsigned char * bindata );
#ifdef __cplusplus
}
#endif

#endif */

char * sdses_base64_encode( const unsigned char * bindata, char * base64, int binlength );

int sdses_base64_decode( const char * base64, unsigned char * bindata );
