Home | History | Annotate | Download | only in test

Lines Matching defs:ui

18 #include <openssl/ui.h>
28 * Test wrapping old style PEM password callback in a UI method through the
29 * use of UI utility functions
34 UI *ui = NULL;
41 || !TEST_ptr(ui = UI_new_method(ui_method)))
44 /* The wrapper passes the UI userdata as the callback userdata param */
45 UI_add_user_data(ui, defpass);
47 if (UI_add_input_string(ui, "prompt", UI_INPUT_FLAG_DEFAULT_PWD,
51 switch (UI_process(ui)) {
53 TEST_info("test_old: UI process interrupted or cancelled");
65 UI_free(ui);
71 /* Test of UI. This uses the UI method defined in apps/apps.c */