source: svn/newcon3bcm2_21bu/BSEAV/lib/utils/bbase64.h

Last change on this file was 76, checked in by megakiss, 10 years ago

1W 대기전력을 만족시키기 위하여 POWEROFF시 튜너를 Standby 상태로 함

  • Property svn:executable set to *
File size: 1.1 KB
Line 
1/***************************************************************************
2 *     Copyright (c) 2006, Broadcom Corporation
3 *     All Rights Reserved
4 *     Confidential Property of Broadcom Corporation
5 *
6 *  THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE
7 *  AGREEMENT  BETWEEN THE USER AND BROADCOM.  YOU HAVE NO RIGHT TO USE OR
8 *  EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT.
9 *
10 * $brcm_Workfile: bbase64.h $
11 * $brcm_Revision: 1 $
12 * $brcm_Date: 8/22/06 4:40p $
13 *
14 * Module Description:
15 *
16 * BASE64 encoder/decoder
17 *
18 * Revision History:
19 *
20 * $brcm_Log: /BSEAV/lib/utils/bbase64.h $
21 *
22 * 1   8/22/06 4:40p vsilyaev
23 * PR 23826: base64 encoder and decoder
24 *
25 *******************************************************************************/
26#ifndef _BBASE64_H__
27#define _BBASE64_H__
28
29#ifdef __cplusplus
30extern "C"
31{
32#endif
33
34int bbase64_encode(const uint8_t *src, size_t src_len, char *dest, size_t dst_len);
35int bbase64_decode(const char *src, size_t src_len, uint8_t *dest, size_t dst_len);
36
37#ifdef __cplusplus
38}
39#endif
40
41
42#endif /* _BBASE64_H__ */
43
Note: See TracBrowser for help on using the repository browser.