-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdecrypt.h
More file actions
33 lines (28 loc) · 778 Bytes
/
decrypt.h
File metadata and controls
33 lines (28 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*------------------------------------------------------
*
* decrypt.h
*
* Project : LyreBird
* Name : Chong Guo
* Student ID : 301295753
* SFU username : armourg
* Lecture section : D1
* Instructor : Brain G.Booth
* TA : Scott Kristjanson
*
* Created by Armour on 14/09/2015
* Copyright (c) 2015 Armour. All rights reserved.
*
*------------------------------------------------------
*/
#ifndef LYREBIRD_DECRYPT_H
#define LYREBIRD_DECRYPT_H
#include <stdio.h>
#include <unistd.h>
#include <netdb.h>
#include "lyre_macro.h"
/* Decrypt each tweet through 4 steps */
char *decrypt_each(char *tweet);
/* Decrypt all tweets in config file */
int decrypt(char *input, char *output, char *err_buffer);
#endif