/* ***************************************************************************** * * File: utils.c * * Author: Damien S. Stuart * * Purpose: General/Generic functions for the fwknop client. * * Copyright 2009-2010 Damien Stuart (dstuart@dstuart.org) * * License (GNU Public License): * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * ***************************************************************************** */ #include "common.h" #include "fwknop_common.h" #include "utils.h" /* Generic hex dump function. */ void hex_dump(const unsigned char *data, const int size) { int ln, i, j = 0; char ascii_str[17] = {0}; for(i=0; i 0x7e) ? '.' : data[i]; if(j == 8) printf(" "); } /* Remainder... */ ln = strlen(ascii_str); if(ln > 0) { for(i=0; i < 16-ln; i++) printf(" "); printf(" %s\n\n", ascii_str); } } /* Determine if a buffer contains only characters from the base64 * encoding set */ int is_base64(const unsigned char *buf, const unsigned short int len) { unsigned short int i; int rv = 1; for(i=0; i