forked from liexusong/php-beast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencrypt.h
21 lines (17 loc) · 1.03 KB
/
encrypt.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*****************************************************************************
* *
* ------------------------------- encrypt.h ------------------------------ *
* *
*****************************************************************************/
#ifndef ENCRYPT_H
#define ENCRYPT_H
/*****************************************************************************
* *
* --------------------------- Public Interface --------------------------- *
* *
*****************************************************************************/
void DES_encipher(const unsigned char *plaintext, unsigned char *ciphertext,
const unsigned char *key);
void DES_decipher(const unsigned char *ciphertext, unsigned char *plaintext,
const unsigned char *key);
#endif