HomeSort by relevance Sort by last modified time
    Searched refs:publ (Results 1 - 5 of 5) sorted by null

  /external/wpa_supplicant_8/src/crypto/
dh_group5.c 16 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ)
18 wpabuf_free(*publ);
19 *publ = dh_init(dh_groups_get(5), priv);
20 if (*publ == NULL)
26 void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ)
dh_group5.h 12 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ);
13 void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ);
crypto_openssl.c 642 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ)
650 wpabuf_free(*publ);
651 *publ = NULL;
681 *publ = pubkey;
697 wpabuf_free(*publ);
698 *publ = NULL;
729 *publ = pubkey;
743 void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ)
764 dh->pub_key = BN_bin2bn(wpabuf_head(publ), wpabuf_len(publ), NULL)
    [all...]
  /external/iproute2/tipc/
nametable.c 33 struct nlattr *publ[TIPC_NLA_PUBL_MAX + 1] = {}; local
44 mnl_attr_parse_nested(attrs[TIPC_NLA_NAME_TABLE_PUBL], parse_attrs, publ);
45 if (!publ[TIPC_NLA_NAME_TABLE_PUBL])
55 tipc_zone(mnl_attr_get_u32(publ[TIPC_NLA_PUBL_NODE])),
56 tipc_cluster(mnl_attr_get_u32(publ[TIPC_NLA_PUBL_NODE])),
57 tipc_node(mnl_attr_get_u32(publ[TIPC_NLA_PUBL_NODE])),
58 mnl_attr_get_u32(publ[TIPC_NLA_PUBL_REF]));
61 mnl_attr_get_u32(publ[TIPC_NLA_PUBL_TYPE]),
62 mnl_attr_get_u32(publ[TIPC_NLA_PUBL_LOWER]),
63 mnl_attr_get_u32(publ[TIPC_NLA_PUBL_UPPER])
    [all...]
  /libcore/luni/src/test/java/tests/security/interfaces/
DSAPublicKeyTest.java 41 DSAPublicKey publ = null; local
48 publ = (DSAPublicKey) keys.getPublic();
49 assertNotNull("Invalid Y value", publ.getY());
56 publ = (DSAPublicKey) keys.getPublic();
57 assertNotNull("Invalid Y value", publ.getY());

Completed in 1617 milliseconds