Lines Matching refs:select
999 static int xor_import(void *vkey, int select, const OSSL_PARAM params[]) in xor_import() argument
1009 if (key == NULL || (select & OSSL_KEYMGMT_SELECT_KEYPAIR) == 0) in xor_import()
1038 static int xor_export(void *vkey, int select, OSSL_CALLBACK *param_cb, in xor_export() argument
1044 if (key == NULL || (select & OSSL_KEYMGMT_SELECT_KEYPAIR) == 0) in xor_export()
1063 static const OSSL_PARAM *xor_import_types(int select) in xor_import_types() argument
1065 return (select & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0 ? xor_key_types : NULL; in xor_import_types()
1068 static const OSSL_PARAM *xor_import_types_ex(void *provctx, int select) in xor_import_types_ex() argument
1073 return xor_import_types(select); in xor_import_types_ex()
1076 static const OSSL_PARAM *xor_export_types(int select) in xor_export_types() argument
1078 return (select & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0 ? xor_key_types : NULL; in xor_export_types()
1081 static const OSSL_PARAM *xor_export_types_ex(void *provctx, int select) in xor_export_types_ex() argument
1086 return xor_export_types(select); in xor_export_types_ex()