Lines Matching full:rights
12 extend rights to some other entity (a computer process, typically, or
104 Note that the proxy policy value is what determines the rights granted
134 some default rights (perhaps none at all), then compute the resulting
135 rights by checking the rights against the chain of proxy certificates,
179 * In this example, I will use a view of granted rights as a bit
183 unsigned char rights[(total_rights + 7) / 8];
223 YOUR_RIGHTS *rights =
232 * Do whatever you need to grant explicit rights
235 * are none to be found, clear all rights (making
237 * of any rights).
239 memset(rights->rights, 0, sizeof(rights->rights));
244 * current rights stand as they are.
254 * the rights granted by the current proxy
256 * accumulated rights bit array, and voilà, you
257 * now have a new accumulated rights bit array.
262 memset(tmp_rights.rights, 0,
263 sizeof(tmp_rights.rights));
277 rights->rights[i] &= tmp_rights.rights[i];
284 YOUR_RIGHTS *rights =
289 * The following procedure finds out what rights the
294 set_default_rights(xs, rights);
306 YOUR_RIGHTS rights;
310 &rights);
315 ok = check_needed_rights(rights, needed_rights);
354 Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.