summaryrefslogtreecommitdiffstats
path: root/crypt.h
blob: c8c6d9f02a76059ab0218369667c8d15829e2aea (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
25
26
#ifndef _CRYPT_H_
#define _CRYPT_H_

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

using namespace std;

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

class crypt
{
    protected:

    private:

    public:
        crypt() {};
};

#endif