aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/tlsopenssl/tls_openssl.api
blob: 8111f51065c450a78c6ca71865b5651a4a11ec12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Define TLS OpenSSL binary API to control the feature */

option version = "2.0.0";

autoreply define tls_openssl_set_engine {
    /* Client identifier, set from api_main.my_client_index */
    u32 client_index;

    /* Arbitrary context, so client can match reply to request */
    u32 context;

    /* if async is enabled */
    u32 async_enable;

    /* engine name */
    u8 engine[64];

    /* algorithm */
    u8 algorithm[64];

    /* cipher */
    u8 ciphers[64];
};