| 738 | } |
| 739 | |
| 740 | const JWTPublicKey* JWKSSnapshot::LookupECPublicKey(const std::string& kid) const { |
| 741 | auto find_it = ec_pub_key_map_.find(kid); |
| 742 | if (find_it == ec_pub_key_map_.end()) { |
| 743 | // Could not find key for the given key ID. |
| 744 | return nullptr; |
| 745 | } |
| 746 | return find_it->second.get(); |
| 747 | } |
| 748 | |
| 749 | // |
| 750 | // JWKSMgr member functions. |