APUE Learning Example Source Code
guowenxue
2020-04-14 ed572bf7f37a64efb3417a21e2db1329288607ee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/********************************************************************************
 *      Copyright:  (C) 2020 LingYun IoT System Studio
 *                  All rights reserved.
 *
 *       Filename:  encrypto.h
 *    Description:  This head file 
 *
 *        Version:  1.0.0(2020年04月04日)
 *         Author:  Guo Wenxue <guowenxue@gmail.com>
 *      ChangeLog:  1, Release initial version on "2020年04月04日 21时13分05秒"
 *                 
 ********************************************************************************/
#ifndef  _ENCRYPTO_H_
#define  _ENCRYPTO_H_
 
extern int       g_var ;
 
int encrypto(char *str, char *ciphertxt, int size);
       
int decrypto(char *ciphertxt, char *text, int size);
 
 
#endif   /* ----- #ifndef _ENCRYPTO_H_  ----- */