Home | History | Annotate | Download | only in openssh

Lines Matching defs:encrypted

88 	Buffer buffer, encrypted;
117 * will be stored in plain text, and storing them also in encrypted
125 /* Pad the part to be encrypted until its size is a multiple of 8. */
130 buffer_init(&encrypted);
134 buffer_put_char(&encrypted, authfile_id_string[i]);
135 buffer_put_char(&encrypted, 0);
138 buffer_put_char(&encrypted, cipher_num);
139 buffer_put_int(&encrypted, 0); /* For future extension */
142 buffer_put_int(&encrypted, BN_num_bits(key->rsa->n));
143 buffer_put_bignum(&encrypted, key->rsa->n);
144 buffer_put_bignum(&encrypted, key->rsa->e);
145 buffer_put_cstring(&encrypted, comment);
148 cp = buffer_append_space(&encrypted, buffer_len(&buffer));
161 buffer_append(blob, buffer_ptr(&encrypted), buffer_len(&encrypted));
162 buffer_free(&encrypted);
314 /* The encrypted private part is not parsed by this function. */
473 /* Rest of the buffer is encrypted. Decrypt it using the passphrase. */