Home | History | Annotate | Download | only in crypto

Lines Matching refs:public_key_

80   if (public_key_)
81 SECKEY_DestroyPublicKey(public_key_);
225 if (public_key_) {
226 copy->public_key_ = SECKEY_CopyPublicKey(public_key_);
227 if (!copy->public_key_)
280 SECKEY_EncodeDERSubjectPublicKeyInfo(public_key_));
290 // public_key_->u.ec.publicValue is an ANSI X9.62 public key which, for
295 CHECK_EQ(ecKey, SECKEY_GetPublicKeyType(public_key_));
296 const unsigned char* const data = public_key_->u.ec.publicValue.data;
297 const unsigned int len = public_key_->u.ec.publicValue.len;
314 ECPrivateKey::ECPrivateKey() : key_(NULL), public_key_(NULL) {}
349 &result->public_key_,
357 CHECK_EQ(ecKey, SECKEY_GetPublicKeyType(result->public_key_));
393 &result->public_key_);
398 CHECK_EQ(ecKey, SECKEY_GetPublicKeyType(result->public_key_));