config: update test config files to current aversive config.in
[aversive.git] / modules / encoding / base64 / test / main.c
1 /*  
2  *  Copyright Droids Corporation, Microb Technology, Eirbot (2005)
3  * 
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  *
18  *  Revision : $Id: main.c,v 1.2.4.2 2007-05-23 17:18:14 zer0 Exp $
19  *
20  */
21
22 #include <stdio.h>
23 #include <string.h>
24 #include <math.h>
25
26 #include <aversive/pgmspace.h>
27 #include <uart.h>
28 #include <aversive.h>
29 #include <aversive/wait.h>
30
31 #include <base64.h>
32
33 int main(void)
34 {
35         /*      Text content   "Man" */
36         /*      ASCII            77        97      110 */
37         /*      Bit pattern /8  01001101 01100001 01101110 */
38         /*      Bit pattern /6  010011 010110 000101 101110 */
39         /*      Index            19      22     5      46 */
40         /*      Base64-Encoded "TWFu" */
41         char *toto = "Input ends with carnal pleasure.";
42         char test1[256], test2[256];
43         int ret;
44
45 #ifndef HOST_VERSION
46         /* UART */
47         uart_init();
48         fdevopen(uart0_dev_send, uart0_dev_recv);
49
50         sei();
51 #endif
52
53         ret =   raw_to_base64(toto, strlen(toto), test1, 256);
54         printf("%d\n", ret);
55         test1[ret]=0;   
56         printf("%s\n", test1);
57         memset(test2, 0, 256);
58         ret =   base64_to_raw(test1, ret, test2, 255);
59         printf("%s\n", test2);
60
61         while(1);
62
63         return 0;
64 }