Home | History | Annotate | Download | only in kdc

Lines Matching defs:public

102                        EC_KEY *ec_key_pk,    /* the client's public key */
131 "the client's public key");
161 "public shared secret");
175 void *ec_key_pk, /* the client's public key */
197 EC_KEY *public = NULL;
231 public = EC_KEY_new_by_curve_name(nid);
235 if (o2i_ECPublicKey(&public, &p, len) == NULL) {
241 *out = public;
242 public = NULL;
245 if (public)
246 EC_KEY_free(public);