Lines Matching defs:kvno
393 (mask & KADM5_KVNO)?entry->kvno:1,
663 kdb.key_data[i].key_data_kvno = entry->kvno;
845 for (entry->kvno = 0, i=0; i<kdb.n_key_data; i++)
846 if (kdb.key_data[i].key_data_kvno > entry->kvno)
847 entry->kvno = kdb.key_data[i].key_data_kvno;
931 newv1->kvno = entry->kvno;
1390 password, 0 /* increment kvno */,
1711 int i, k, kvno, ret, have_pol = 0;
1737 for (kvno = 0, i=0; i<kdb.n_key_data; i++)
1738 if (kdb.key_data[i].key_data_kvno > kvno)
1739 kvno = kdb.key_data[i].key_data_kvno;
1756 keyblock, &keysalt, kvno + 1,
1888 int i, j, k, kvno, ret, have_pol = 0;
1932 for (kvno = 0, i=0; i<kdb.n_key_data; i++)
1933 if (kdb.key_data[i].key_data_kvno > kvno)
1934 kvno = kdb.key_data[i].key_data_kvno;
1972 kvno + 1,
2141 * kvno (r) kvno to search for, -1 for max, 0 for max
2145 * kvnop (w) kvno to fill in, or NULL
2149 * find a key with a specified enctype, salt type, and kvno in a
2152 * in salttype, and the key version number in kvno.
2154 * If ktype or stype is -1, it is ignored for the search. If kvno is
2155 * -1, ktype and stype are ignored and the key with the max kvno is
2156 * returned. If kvno is 0, only the key with the max kvno is returned
2163 kvno, krb5_keyblock *keyblock,
2180 stype, kvno, &key_data)))