Lines Matching refs:copy
282 Buffer copy;
299 buffer_init(©);
300 buffer_append(©, buffer_ptr(blob), buffer_len(blob));
301 buffer_consume(©, sizeof(authfile_id_string));
304 (void) buffer_get_char(©); /* cipher type */
305 (void) buffer_get_int(©); /* reserved */
308 (void) buffer_get_int(©);
310 buffer_get_bignum(©, pub->rsa->n);
311 buffer_get_bignum(©, pub->rsa->e);
313 *commentp = buffer_get_string(©, NULL);
315 buffer_free(©);
426 Buffer copy;
443 buffer_init(©);
444 buffer_append(©, buffer_ptr(blob), buffer_len(blob));
445 buffer_consume(©, sizeof(authfile_id_string));
448 cipher_type = buffer_get_char(©);
449 (void) buffer_get_int(©); /* Reserved data. */
452 (void) buffer_get_int(©);
455 buffer_get_bignum(©, prv->rsa->n);
456 buffer_get_bignum(©, prv->rsa->e);
458 *commentp = buffer_get_string(©, NULL);
460 (void)buffer_get_string_ptr(©, NULL);
466 buffer_free(©);
471 cp = buffer_append_space(&decrypted, buffer_len(©));
477 buffer_ptr(©), buffer_len(©));
480 buffer_free(©);