Linux Kernel
3.7.1
|
#include <public_key.h>
Data Fields | |
struct public_key_algorithm * | algo |
u8 | capabilities |
union { | |
MPI mpi [5] | |
struct { | |
MPI p | |
MPI q | |
MPI g | |
MPI y | |
MPI x | |
} dsa | |
struct { | |
MPI n | |
MPI e | |
MPI d | |
MPI p | |
MPI q | |
} rsa | |
}; | |
Definition at line 55 of file public_key.h.
union { ... } |
struct public_key_algorithm* algo |
Definition at line 56 of file public_key.h.
Definition at line 57 of file public_key.h.
MPI d |
Definition at line 75 of file public_key.h.
struct { ... } dsa |
MPI e |
Definition at line 74 of file public_key.h.
MPI g |
Definition at line 68 of file public_key.h.
MPI mpi[5] |
Definition at line 64 of file public_key.h.
MPI n |
Definition at line 73 of file public_key.h.
MPI p |
Definition at line 66 of file public_key.h.
MPI q |
Definition at line 67 of file public_key.h.
struct { ... } rsa |
MPI x |
Definition at line 70 of file public_key.h.
MPI y |
Definition at line 69 of file public_key.h.