Lines Matching defs:kvno
44 * Given a particular enctype and optional salttype and kvno, find the
47 * If stype or kvno is negative, it is ignored.
48 * If kvno is 0 get the key which is maxkvno for the princ and matches
52 krb5_dbe_def_search_enctype(kcontext, dbentp, start, ktype, stype, kvno, kdatap)
58 krb5_int32 kvno;
67 if (kvno == -1 && stype == -1 && ktype == -1)
68 kvno = 0;
70 if (kvno == 0) {
73 if (kvno < dbentp->key_data[i].key_data_kvno) {
74 kvno = dbentp->key_data[i].key_data_kvno;
112 if (kvno >= 0) {
113 if (kvno == dbentp->key_data[i].key_data_kvno) {
116 maxkvno = kvno;
211 int *kvno,
274 *kvno = 0;