Lines Matching defs:pers
67 * struct drbg_string pers;
70 * drbg_string_fill(&pers, personalization, strlen(personalization));
1141 * @pers: personalization / additional information buffer
1148 static int drbg_seed(struct drbg_state *drbg, struct drbg_string *pers,
1159 if (pers && pers->len > (drbg_max_addtl(drbg))) {
1161 pers->len);
1233 * the variable pers is directly handed in by the caller, so check its
1236 if (pers && pers->buf && 0 < pers->len) {
1237 list_add_tail(&pers->list, &seedlist);
1563 * @pers Personalization string that is mixed into state, may be NULL -- note
1574 static int drbg_instantiate(struct drbg_state *drbg, struct drbg_string *pers,
1612 ret = drbg_seed(drbg, pers, reseed);