hathor-cpp-scanner/3rdparty/libbcrypt-1.0/source/include/bcrypt.h

18 lines
525 B
C

/* ====================================================================
* Copyright (c) 2002 John Sennesael. All rights reserved.
*
* This header is part of a C library interface for bcrypt developed by
* donationcoder.com
* ====================================================================
*/
#ifndef BCRYPT_H_INCLUDE
#define BCRYPT_H_INCLUDE
/// Encrypts a file.
int bcrypt(char* filename,char* key,char delOrig);
/// Decrypts a file.
int bdecrypt(char* filename,char* key,char delOrig);
#endif