File: ossl_pkey.h

package info (click to toggle)
libopenssl-ruby 0.1.4a-1sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 556 kB
  • ctags: 701
  • sloc: ansic: 6,200; ruby: 1,538; makefile: 45
file content (22 lines) | stat: -rw-r--r-- 420 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * $Id: ossl_pkey.h,v 1.2 2001/11/16 11:27:46 majkl Exp $
 * 'OpenSSL for Ruby' project
 * Copyright (C) 2001 Michal Rokos <m.rokos@sh.cvut.cz>
 * All rights reserved.
 */
/*
 * This program is licenced under the same licence as Ruby.
 * (See the file 'LICENCE'.)
 */
#ifndef _OSSL_PKEY_H_
#define _OSSL_PKEY_H_

/*
 * Struct
 */
typedef struct ossl_pkey_st {
	EVP_PKEY *(*get_EVP_PKEY)(VALUE);
} ossl_pkey;

#endif