Lines Matching refs:selection
55 static int key2blob_check_selection(int selection, int selection_mask)
58 * The selections are kinda sorta "levels", i.e. each selection given
69 if (selection == 0)
73 int check1 = (selection & checks[i]) != 0;
88 static int key2blob_encode(void *vctx, const void *key, int selection,
110 * The selection is understood as a "level" rather than an exact set of
113 * the encoded public key itself, no matter if the selection bits include
114 * OSSL_KEYMGMT_SELECT_PARAMETERS or not. However, if the selection includes
129 static void *impl##2blob_import_object(void *ctx, int selection, \
133 ctx, selection, params); \
139 static int impl##2blob_does_selection(void *ctx, int selection) \
141 return key2blob_check_selection(selection, \
147 int selection, \
156 return key2blob_encode(vctx, key, selection, cout); \