Searched refs:afalg_dst (Results 1 – 1 of 1) sorted by relevance
/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | crypto_sanity.c | 89 char afalg_dst[16] = {0}; in test_crypto_sanity() local 155 do_crypt_afalg(plain_text, afalg_dst, sizeof(afalg_dst), true); in test_crypto_sanity() 159 if (!ASSERT_STRNEQ(skel->bss->dst, afalg_dst, sizeof(afalg_dst), "encrypt AF_ALG")) in test_crypto_sanity() 175 err = sendto(sockfd, afalg_dst, sizeof(afalg_dst), 0, (void *)&addr, addrlen); in test_crypto_sanity() 177 if (!ASSERT_EQ(err, sizeof(afalg_dst), "decrypt send")) in test_crypto_sanity() 180 do_crypt_afalg(afalg_dst, afalg_plain, sizeof(afalg_plain), false); in test_crypto_sanity()
|