Home
last modified time | relevance | path

Searched refs:unwrapped (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/wpa/src/common/
H A Ddpp_auth.c678 u8 *unwrapped = NULL; in dpp_auth_req_rx() local
803 unwrapped = os_malloc(unwrapped_len); in dpp_auth_req_rx()
804 if (!unwrapped) in dpp_auth_req_rx()
808 2, addr, len, unwrapped) < 0) { in dpp_auth_req_rx()
813 unwrapped, unwrapped_len); in dpp_auth_req_rx()
815 if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) { in dpp_auth_req_rx()
820 i_nonce = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_I_NONCE, in dpp_auth_req_rx()
829 i_capab = dpp_get_attr(unwrapped, unwrapped_len, in dpp_auth_req_rx()
839 bin_clear_free(unwrapped, unwrapped_len); in dpp_auth_req_rx()
840 unwrapped = NULL; in dpp_auth_req_rx()
[all …]
H A Ddpp_reconfig.c678 u8 *unwrapped = NULL; in dpp_reconfig_auth_resp_rx() local
788 unwrapped = os_malloc(unwrapped_len); in dpp_reconfig_auth_resp_rx()
789 if (!unwrapped) in dpp_reconfig_auth_resp_rx()
793 2, addr, len, unwrapped) < 0) { in dpp_reconfig_auth_resp_rx()
798 unwrapped, unwrapped_len); in dpp_reconfig_auth_resp_rx()
800 if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) { in dpp_reconfig_auth_resp_rx()
805 c_nonce = dpp_get_attr(unwrapped, unwrapped_len, in dpp_reconfig_auth_resp_rx()
814 conn_status = dpp_get_attr(unwrapped, unwrapped_len, in dpp_reconfig_auth_resp_rx()
838 bin_clear_free(unwrapped, unwrapped_len); in dpp_reconfig_auth_resp_rx()
858 u8 *unwrapped = NULL; in dpp_reconfig_auth_conf_rx() local
[all …]
H A Ddpp_pkex.c1032 u8 *unwrapped = NULL; in dpp_pkex_rx_commit_reveal_req() local
1062 unwrapped = os_malloc(unwrapped_len); in dpp_pkex_rx_commit_reveal_req()
1063 if (!unwrapped) in dpp_pkex_rx_commit_reveal_req()
1076 2, addr, len, unwrapped) < 0) { in dpp_pkex_rx_commit_reveal_req()
1084 unwrapped, unwrapped_len); in dpp_pkex_rx_commit_reveal_req()
1086 if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) { in dpp_pkex_rx_commit_reveal_req()
1091 b_key = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_BOOTSTRAP_KEY, in dpp_pkex_rx_commit_reveal_req()
1138 peer_u = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_I_AUTH_TAG, in dpp_pkex_rx_commit_reveal_req()
1187 os_free(unwrapped); in dpp_pkex_rx_commit_reveal_req()
1210 u8 *unwrapped = NULL; in dpp_pkex_rx_commit_reveal_resp() local
[all …]
H A Ddpp.c2282 u8 *unwrapped = NULL; in dpp_conf_req_rx() local
2317 unwrapped = os_malloc(unwrapped_len); in dpp_conf_req_rx()
2318 if (!unwrapped) in dpp_conf_req_rx()
2322 0, NULL, NULL, unwrapped) < 0) { in dpp_conf_req_rx()
2327 unwrapped, unwrapped_len); in dpp_conf_req_rx()
2329 if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) { in dpp_conf_req_rx()
2334 e_nonce = dpp_get_attr(unwrapped, unwrapped_len, in dpp_conf_req_rx()
2346 i_proto = dpp_get_attr(unwrapped, unwrapped_len, in dpp_conf_req_rx()
2378 rx_auth_i = dpp_get_attr(unwrapped, unwrapped_len, in dpp_conf_req_rx()
2398 config_attr = dpp_get_attr(unwrapped, unwrapped_len, in dpp_conf_req_rx()
[all …]
/freebsd/crypto/krb5/src/lib/gssapi/krb5/
H A Dverify_mic.c142 struct k5input in, unwrapped; in krb5_gss_verify_mic() local
155 unwrapped = in; in krb5_gss_verify_mic()
160 &unwrapped, message); in krb5_gss_verify_mic()
162 major = verify_mic_v3(ctx->k5_context, minor_status, ctx, &unwrapped, in krb5_gss_verify_mic()
H A Dunwrap.c381 struct k5input in, unwrapped; in krb5_gss_unwrap() local
396 unwrapped = in; in krb5_gss_unwrap()
400 major = unwrap_v1(ctx->k5_context, minor_status, ctx, &unwrapped, in krb5_gss_unwrap()
403 major = unwrap_v3(ctx->k5_context, minor_status, ctx, &unwrapped, in krb5_gss_unwrap()
/freebsd/crypto/openssl/doc/man3/
H A DEVP_PKEY_decapsulate.pod16 unsigned char *unwrapped, size_t *unwrappedlen,
41 If I<unwrapped> is NULL then the size of the output shared secret buffer is
44 decapsulated secret data is written to I<unwrapped> and the length of shared
48 must be initialised to the length of I<unwrapped>, so that the call can
H A DEVP_PKEY_encapsulate.pod55 I<unwrapped> buffer so that its size can be validated by the call, ensuring it
/freebsd/crypto/openssl/util/
H A Dfind-doc-nits538 my $unwrapped = $thing;
542 $unwrapped =~ s/^B<//;
543 $unwrapped =~ s/>$//;
549 if ( $unwrapped =~ /^\s*-/ ) {
550 return $unwrapped # return option with outer B<> removed
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp7800 FunctionTypeUnwrapper unwrapped(S, type); in handleFunctionTypeAttr() local
7807 if (!unwrapped.isFunctionType()) in handleFunctionTypeAttr()
7811 FunctionType::ExtInfo EI = unwrapped.get()->getExtInfo().withNoReturn(true); in handleFunctionTypeAttr()
7812 type = unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI)); in handleFunctionTypeAttr()
7818 if (!unwrapped.isFunctionType()) in handleFunctionTypeAttr()
7821 if (!unwrapped.get()->isFunctionProtoType()) { in handleFunctionTypeAttr()
7829 const auto *FPT = unwrapped.get()->getAs<FunctionProtoType>(); in handleFunctionTypeAttr()
7833 type = unwrapped.wrap(S, cast<FunctionType>(type.getTypePtr())); in handleFunctionTypeAttr()
7839 if (!unwrapped.isFunctionType()) in handleFunctionTypeAttr()
7851 unwrapped.get()->getExtInfo().withCmseNSCall(true); in handleFunctionTypeAttr()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxx.cpp112 if (auto unwrapped = obj.GetChildAtIndex(anon_struct_idx)) { in GetValueOrOldCompressedPair() local
/freebsd/contrib/sendmail/cf/cf/
H A Dsubmit.cf413 # From: lines that have embedded newlines are unwrapped onto one line
/freebsd/crypto/openssl/include/openssl/
H A Devp.h2041 unsigned char *unwrapped, size_t *unwrappedlen,
/freebsd/contrib/sendmail/cf/m4/
H A Dproto.m4563 # From: lines that have embedded newlines are unwrapped onto one line
/freebsd/crypto/krb5/src/include/krb5/
H A Dkrb5.hin8138 * @param [in] ad_kdcissued AD-KDCIssued authorization data to be unwrapped
8144 * authdatum element is returned in @a issuer, and the unwrapped list of
/freebsd/contrib/sendmail/cf/
H A DREADME4199 embedded newlines are unwrapped
/freebsd/contrib/xz/
H A DChangeLog7099 The .po files from the Translation Project come with unwrapped
/freebsd/share/dict/
H A Dweb2225229 unwrapped