chromium/third_party/grpc/src/src/core/lib/security/credentials/fake/fake_credentials.cc

//
//
// Copyright 2016 gRPC authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//

#include <grpc/support/port_platform.h>

#include "src/core/lib/security/credentials/fake/fake_credentials.h"

#include <stdlib.h>

#include <memory>
#include <utility>

#include "absl/strings/string_view.h"

#include "src/core/lib/channel/channel_args.h"
#include "src/core/lib/gprpp/ref_counted_ptr.h"
#include "src/core/lib/promise/promise.h"
#include "src/core/lib/security/security_connector/fake/fake_security_connector.h"
#include "src/core/lib/security/security_connector/security_connector.h"
#include "src/core/lib/transport/metadata_batch.h"

// -- Fake transport security credentials. --

namespace {

class grpc_fake_channel_credentials final : public grpc_channel_credentials {};

class grpc_fake_server_credentials final : public grpc_server_credentials {};
}  // namespace

grpc_channel_credentials* grpc_fake_transport_security_credentials_create() {}

grpc_server_credentials*
grpc_fake_transport_security_server_credentials_create() {}

grpc_arg grpc_fake_transport_expected_targets_arg(char* expected_targets) {}

// -- Metadata-only test credentials. --

grpc_core::ArenaPromise<absl::StatusOr<grpc_core::ClientMetadataHandle>>
grpc_md_only_test_credentials::GetRequestMetadata(
    grpc_core::ClientMetadataHandle initial_metadata,
    const grpc_call_credentials::GetRequestMetadataArgs*) {}

grpc_core::UniqueTypeName grpc_md_only_test_credentials::Type() {}

grpc_call_credentials* grpc_md_only_test_credentials_create(
    const char* md_key, const char* md_value) {}