My Project
idcrypt.h
Go to the documentation of this file.
1/******************************************************************************
2 Copyright (c) 2004 by Turku PET Centre
3
4 idcrypt.h
5
6 Date
7 2004-12-14 Calle Laakkonen
8 Created file
9******************************************************************************/
10#ifndef IDCRYPT_H
11#define IDCRYPT_H
12/*****************************************************************************/
13
14/*
15 * Return libpet idcrypt module version
16 */
17extern const char *libpet_idcrypt_version(void);
18
19/*
20 * Scramble characters in ASCII range 32-126
21 * using the Vigenere Cipher.
22 */
23extern int id_crypt(const char *string,const char *key,char *out,int decrypt);
24
25
26#endif
27
int id_crypt(const char *string, const char *key, char *out, int decrypt)
Definition: idcrypt.c:46
const char * libpet_idcrypt_version(void)
Definition: idcrypt.c:38