Lines Matching refs:sigctx
301 unsigned char *sigctx = OPENSSL_zalloc(1); in fake_rsa_sig_newctx() local
303 TEST_ptr(sigctx); in fake_rsa_sig_newctx()
305 return sigctx; in fake_rsa_sig_newctx()
308 static void fake_rsa_sig_freectx(void *sigctx) in fake_rsa_sig_freectx() argument
310 OPENSSL_free(sigctx); in fake_rsa_sig_freectx()
316 unsigned char *sigctx = ctx; in fake_rsa_sig_sign_init() local
320 if (!TEST_ptr(sigctx)) in fake_rsa_sig_sign_init()
328 *sigctx = 1; in fake_rsa_sig_sign_init()
336 unsigned char *sigctx = ctx; in fake_rsa_sig_sign() local
339 if (!TEST_ptr(sigctx) || !TEST_int_eq(*sigctx, 1)) in fake_rsa_sig_sign()
347 *sigctx = 2; in fake_rsa_sig_sign()
363 unsigned char *sigctx = ctx; in fake_rsa_sig_dupctx() local
366 if ((*sigctx & FAKE_DGSTSGN_NO_DUP) != 0) in fake_rsa_sig_dupctx()
372 *newctx = *sigctx; in fake_rsa_sig_dupctx()
379 unsigned char *sigctx = ctx; in fake_rsa_dgstsgnvfy_init() local
383 if (!TEST_ptr(sigctx)) in fake_rsa_dgstsgnvfy_init()
391 *sigctx = type; in fake_rsa_dgstsgnvfy_init()
399 *sigctx |= FAKE_DGSTSGN_NO_DUP; in fake_rsa_dgstsgnvfy_init()
422 unsigned char *sigctx = ctx; in fake_rsa_dgstsgnvfy_update() local
425 if (!TEST_ptr(sigctx)) in fake_rsa_dgstsgnvfy_update()
428 if (*sigctx == 0 || (*sigctx & FAKE_DGSTSGN_FINALISED) != 0) in fake_rsa_dgstsgnvfy_update()
431 *sigctx |= FAKE_DGSTSGN_UPDATED; in fake_rsa_dgstsgnvfy_update()
438 unsigned char *sigctx = ctx; in fake_rsa_dgstsgnvfy_final() local
441 if (!TEST_ptr(sigctx)) in fake_rsa_dgstsgnvfy_final()
444 if (*sigctx == 0 || (*sigctx & FAKE_DGSTSGN_FINALISED) != 0) in fake_rsa_dgstsgnvfy_final()
447 if ((*sigctx & FAKE_DGSTSGN_SIGN) != 0 && (siglen == NULL)) in fake_rsa_dgstsgnvfy_final()
450 if ((*sigctx & FAKE_DGSTSGN_VERIFY) != 0 && (siglen != NULL)) in fake_rsa_dgstsgnvfy_final()
466 if ((*sigctx & FAKE_DGSTSGN_NO_DUP) != 0) { in fake_rsa_dgstsgnvfy_final()
467 *sigctx |= FAKE_DGSTSGN_FINALISED; in fake_rsa_dgstsgnvfy_final()