Home | History | Annotate | Download | only in futility

Lines Matching refs:pubkey

73 	VbPublicKey *pubkey;
81 pubkey = PublicKeyReadKeyb(infile, algorithm, version);
82 if (pubkey) {
83 if (0 != PublicKeyWrite(outfile, pubkey)) {
87 free(pubkey);
108 VbPublicKey *pubkey;
116 pubkey = PublicKeyRead(infile);
117 if (pubkey) {
119 printf("Algorithm: %" PRIu64 " %s\n", pubkey->algorithm,
120 (pubkey->algorithm < kNumAlgorithms ?
121 algo_strings[pubkey->algorithm] : "(invalid)"));
122 printf("Key Version: %" PRIu64 "\n", pubkey->key_version);
124 PrintPubKeySha1Sum(pubkey);
127 if (0 != PublicKeyWrite(outfile, pubkey)) {
130 free(pubkey);
134 free(pubkey);