Linux Kernel
3.7.1
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
crypto
asymmetric_keys
public_key.h
Go to the documentation of this file.
1
/* Public key algorithm internals
2
*
3
* See Documentation/crypto/asymmetric-keys.txt
4
*
5
* Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
6
* Written by David Howells (
[email protected]
)
7
*
8
* This program is free software; you can redistribute it and/or
9
* modify it under the terms of the GNU General Public Licence
10
* as published by the Free Software Foundation; either version
11
* 2 of the Licence, or (at your option) any later version.
12
*/
13
14
#include <
crypto/public_key.h
>
15
16
extern
struct
asymmetric_key_subtype
public_key_subtype
;
17
18
/*
19
* Public key algorithm definition.
20
*/
21
struct
public_key_algorithm
{
22
const
char
*
name
;
23
u8
n_pub_mpi
;
/* Number of MPIs in public key */
24
u8
n_sec_mpi
;
/* Number of MPIs in secret key */
25
u8
n_sig_mpi
;
/* Number of MPIs in a signature */
26
int
(*
verify_signature
)(
const
struct
public_key
*
key
,
27
const
struct
public_key_signature
*
sig
);
28
};
29
30
extern
const
struct
public_key_algorithm
RSA_public_key_algorithm
;
Generated on Thu Jan 10 2013 13:22:52 for Linux Kernel by
1.8.2