Lines Matching refs:encrypted
88 Buffer buffer, encrypted; in key_private_rsa1_to_blob() local
130 buffer_init(&encrypted); in key_private_rsa1_to_blob()
134 buffer_put_char(&encrypted, authfile_id_string[i]); in key_private_rsa1_to_blob()
135 buffer_put_char(&encrypted, 0); in key_private_rsa1_to_blob()
138 buffer_put_char(&encrypted, cipher_num); in key_private_rsa1_to_blob()
139 buffer_put_int(&encrypted, 0); /* For future extension */ in key_private_rsa1_to_blob()
142 buffer_put_int(&encrypted, BN_num_bits(key->rsa->n)); in key_private_rsa1_to_blob()
143 buffer_put_bignum(&encrypted, key->rsa->n); in key_private_rsa1_to_blob()
144 buffer_put_bignum(&encrypted, key->rsa->e); in key_private_rsa1_to_blob()
145 buffer_put_cstring(&encrypted, comment); in key_private_rsa1_to_blob()
148 cp = buffer_append_space(&encrypted, buffer_len(&buffer)); in key_private_rsa1_to_blob()
161 buffer_append(blob, buffer_ptr(&encrypted), buffer_len(&encrypted)); in key_private_rsa1_to_blob()
162 buffer_free(&encrypted); in key_private_rsa1_to_blob()