Lines Matching refs:secret
89 u_char secret[256]; /* is that big enough for all secrets? */ member
134 if (EVP_CipherInit(&ctx, sa->evp, sa->secret, NULL, 0) < 0) in esp_print_decrypt_buffer_by_ikev2()
271 sa->secretlen = espprint_decode_hex(ndo, sa->secret, sizeof(sa->secret), colon); in espprint_decode_encalgo()
276 if (i < sizeof(sa->secret)) { in espprint_decode_encalgo()
277 memcpy(sa->secret, colon, i); in espprint_decode_encalgo()
280 memcpy(sa->secret, colon, sizeof(sa->secret)); in espprint_decode_encalgo()
281 sa->secretlen = sizeof(sa->secret); in espprint_decode_encalgo()
556 u_char *secret; in esp_print() local
566 secret = NULL; in esp_print()
572 p = (u_char *)&secret; in esp_print()
664 secret = sa->secret; in esp_print()
669 if (EVP_CipherInit(&ctx, sa->evp, secret, NULL, 0) < 0) in esp_print()