OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VbPrivateKey
(Results
1 - 21
of
21
) sorted by null
/external/vboot_reference/host/lib/include/
host_key.h
18
typedef struct
VbPrivateKey
{
21
}
VbPrivateKey
;
26
VbPrivateKey
* PrivateKeyReadPem(const char* filename, uint64_t algorithm);
30
void PrivateKeyFree(
VbPrivateKey
* key);
33
int PrivateKeyWrite(const char* filename, const
VbPrivateKey
* key);
39
VbPrivateKey
* PrivateKeyRead(const char* filename);
host_common.h
37
const
VbPrivateKey
*signing_key,
57
const
VbPrivateKey
*signing_key);
host_signature.h
44
const
VbPrivateKey
* key);
51
const
VbPrivateKey
* key);
host_keyblock.h
31
const
VbPrivateKey
* signing_key,
/external/vboot_reference/host/lib/
host_key.c
23
VbPrivateKey
* PrivateKeyReadPem(const char* filename, uint64_t algorithm) {
25
VbPrivateKey
* key;
49
key = (
VbPrivateKey
*)malloc(sizeof(
VbPrivateKey
));
62
void PrivateKeyFree(
VbPrivateKey
* key) {
72
int PrivateKeyWrite(const char* filename, const
VbPrivateKey
* key) {
109
VbPrivateKey
* PrivateKeyRead(const char* filename) {
110
VbPrivateKey
*key;
121
key = (
VbPrivateKey
*)malloc(sizeof(
VbPrivateKey
));
[
all
...]
host_common.c
21
const
VbPrivateKey
*signing_key,
83
const
VbPrivateKey
*signing_key)
host_signature.c
79
const
VbPrivateKey
* key) {
105
const
VbPrivateKey
* key) {
host_keyblock.c
16
const
VbPrivateKey
* signing_key,
/external/vboot_reference/tests/
vboot_common2_tests.c
44
const
VbPrivateKey
*private_key)
80
const
VbPrivateKey
*private_key)
109
const
VbPrivateKey
*key)
119
const
VbPrivateKey
*private_key)
217
VbPrivateKey
*private_key = NULL;
vboot_common3_tests.c
31
const
VbPrivateKey
*private_key,
157
const
VbPrivateKey
*key)
167
const
VbPrivateKey
*private_key,
284
VbPrivateKey
*signing_private_key = NULL;
vb20_common3_tests.c
22
static void resign_keyblock(struct vb2_keyblock *h, const
VbPrivateKey
*key)
33
const
VbPrivateKey
*private_key,
163
const
VbPrivateKey
*key)
173
const
VbPrivateKey
*private_key,
310
VbPrivateKey
*signing_private_key = NULL;
vb20_common2_tests.c
143
VbPrivateKey
*private_key = NULL;
/external/vboot_reference/futility/
vb1_helper.h
20
VbKeyBlockHeader *keyblock,
VbPrivateKey
*signpriv_key,
cmd_vbutil_key.c
74
VbPrivateKey
*privkey;
109
VbPrivateKey
*privkey;
cmd_create.c
79
VbPrivateKey
*privkey = 0;
114
privkey = (
VbPrivateKey
*)malloc(sizeof(
VbPrivateKey
));
cmd_vbutil_firmware.c
84
VbPrivateKey
*signing_key;
cmd_vbutil_keyblock.c
86
VbPrivateKey
*signing_key = NULL;
vb1_helper.c
400
VbKeyBlockHeader *keyblock,
VbPrivateKey
*signpriv_key,
755
VbPrivateKey
key;
cmd_sign.c
39
VbPrivateKey
*signprivate;
42
VbPrivateKey
*devsignprivate;
382
VbPrivateKey
*signkey,
cmd_vbutil_kernel.c
241
VbPrivateKey
*signpriv_key = NULL;
cmd_show.c
110
VbPrivateKey
key;
Completed in 226 milliseconds