#include "src/cpp/common/secure_auth_context.h"
#include <algorithm>
#include <grpc/grpc_security.h>
namespace grpc {
std::vector<grpc::string_ref> SecureAuthContext::GetPeerIdentity() const { … }
std::string SecureAuthContext::GetPeerIdentityPropertyName() const { … }
std::vector<grpc::string_ref> SecureAuthContext::FindPropertyValues(
const std::string& name) const { … }
AuthPropertyIterator SecureAuthContext::begin() const { … }
AuthPropertyIterator SecureAuthContext::end() const { … }
void SecureAuthContext::AddProperty(const std::string& key,
const grpc::string_ref& value) { … }
bool SecureAuthContext::SetPeerIdentityPropertyName(const std::string& name) { … }
bool SecureAuthContext::IsPeerAuthenticated() const { … }
}