~ubuntu-branches/ubuntu/natty/ccrypt/natty

« back to all changes in this revision

Viewing changes to src/unixcryptlib.h

  • Committer: Bazaar Package Importer
  • Author(s): Jean-Francois Dive
  • Date: 2003-09-07 21:46:53 UTC
  • Revision ID: james.westby@ubuntu.com-20030907214653-ht1thvjqegmejyq0
Tags: 1.6-1
* New upstream version.
* Removed the cccat renaming and conflict with cfs (closes: #180915).
* debian/rules clean remove configure generated files.
* Fix gcc 3.3 cleanups (multi-line and reserved word warnings) (closes: 194875).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2000-2003 Peter Selinger.
 
2
   This file is part of ccrypt. It is free software and it is covered
 
3
   by the GNU general public license. See the file COPYING for details. */
 
4
 
 
5
/* unixcryptlib.c: library to simulate old "unix crypt" program */
 
6
/* $Id: unixcryptlib.h,v 1.2 2003/03/30 00:38:29 selinger Exp $ */
 
7
 
 
8
/* WARNING: do not use this software for encryption! The encryption
 
9
   provided by this program has been broken and is not secure. Only
 
10
   use this software to decrypt existing data. */
 
11
 
 
12
#ifndef _UNIXCRYPTLIB_H
 
13
#define _UNIXCRYPTLIB_H
 
14
 
 
15
#include "ccryptlib.h"
 
16
 
 
17
int unixcrypt_init(ccrypt_stream_t *b, char *key);
 
18
int unixcrypt(ccrypt_stream_t *b);
 
19
int unixcrypt_end(ccrypt_stream_t *b);
 
20
 
 
21
#endif /* _UNIXCRYPTLIB_H */