HomeSort by relevance Sort by last modified time
    Searched refs:kcopy (Results 1 - 2 of 2) sorted by null

  /external/vboot_reference/host/lib/
host_key.c 246 VbPublicKey* kcopy; local
250 kcopy = PublicKeyAlloc(key->key_size, 0, 0);
251 if (!kcopy)
253 if (0 != PublicKeyCopy(kcopy, key)) {
254 free(kcopy);
259 rv = WriteFile(filename, kcopy, kcopy->key_offset + kcopy->key_size);
260 free(kcopy);
  /external/openssh/
krl.c 364 struct sshkey *kcopy; local
367 if ((r = sshkey_from_private(key, &kcopy)) != 0)
369 if (sshkey_is_cert(kcopy)) {
370 if ((r = sshkey_drop_cert(kcopy)) != 0) {
371 sshkey_free(kcopy);
375 r = sshkey_to_blob(kcopy, blob, blen);
376 sshkey_free(kcopy);
    [all...]

Completed in 209 milliseconds