Lines Matching refs:vmacctx
56 static void poly1305_free(void *vmacctx)
58 OPENSSL_free(vmacctx);
93 static int poly1305_init(void *vmacctx, const unsigned char *key,
96 struct poly1305_data_st *ctx = vmacctx;
107 static int poly1305_update(void *vmacctx, const unsigned char *data,
110 struct poly1305_data_st *ctx = vmacctx;
121 static int poly1305_final(void *vmacctx, unsigned char *out, size_t *outl,
124 struct poly1305_data_st *ctx = vmacctx;
163 static int poly1305_set_ctx_params(void *vmacctx, const OSSL_PARAM *params)
165 struct poly1305_data_st *ctx = vmacctx;