https://github.com/google/tink
Raw File
Tip revision: 99edf8dfe462bff711095d881c00fcd3cb2da224 authored by Walter Cacau on 09 September 2017, 00:04:44 UTC
Set version numbers to 1.0.0
Tip revision: 99edf8d
mac_config.cc
// Copyright 2017 Google Inc.
//
// 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 "cc/mac/mac_config.h"

#include "cc/key_manager.h"
#include "cc/registry.h"
#include "cc/mac/hmac_key_manager.h"
#include "cc/util/status.h"

namespace util = crypto::tink::util;

namespace crypto {
namespace tink {

// static
util::Status MacConfig::RegisterStandardKeyTypes() {
  return RegisterKeyManager(new HmacKeyManager());
}

// static
util::Status MacConfig::RegisterLegacyKeyTypes() {
  return util::Status::OK;
}

// static
util::Status MacConfig::RegisterKeyManager(KeyManager<Mac>* key_manager) {
  if (key_manager == nullptr) {
    return util::Status(util::error::INVALID_ARGUMENT,
                        "Parameter 'key_manager' must be non-null.");
  }
  return Registry::get_default_registry().RegisterKeyManager(
      key_manager->get_key_type(), key_manager);
}

}  // namespace tink
}  // namespace crypto
back to top