summaryrefslogtreecommitdiffstats
path: root/crypt.h
blob: 67217340b1ebf1fd64fd6c30974aa82b764935e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _CRYPT_H_
#define _CRYPT_H_

#include <iostream>
#include "crypt_args.h"
#include "bigint/BigIntegerLibrary.hh"

using namespace std;

/* function prototypes */
struct rsakey_t parse_key(FILE *);

class crypt
{
    protected:

    private:

    public:
        crypt() {};
};

#endif