blob: 1284c30da20c1ff2e7d58dac2a5ca6ca683317c3 [file] [log] [blame]
// Copyright 2021 Google LLC
//
// 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 "tink/experimental/pqcrypto/signature/subtle/falcon_verify.h"
#include <string>
#include <utility>
#include "absl/memory/memory.h"
#include "absl/status/status.h"
#include "absl/strings/str_format.h"
#include "tink/experimental/pqcrypto/signature/subtle/falcon_subtle_utils.h"
#include "tink/util/secret_data.h"
#include "tink/util/statusor.h"
extern "C" {
#include "third_party/pqclean/crypto_sign/falcon-1024/api.h"
#include "third_party/pqclean/crypto_sign/falcon-512/api.h"
}
namespace crypto {
namespace tink {
namespace subtle {
// static
util::StatusOr<std::unique_ptr<PublicKeyVerify>> FalconVerify::New(
const FalconPublicKeyPqclean& public_key) {
auto status = internal::CheckFipsCompatibility<FalconVerify>();
if (!status.ok()) return status;
return {
absl::WrapUnique<FalconVerify>(new FalconVerify(public_key))};
}
util::Status FalconVerify::Verify(absl::string_view signature,
absl::string_view data) const {
int32_t key_size = public_key_.GetKey().size();
int result = 1;
switch (key_size) {
case kFalcon512PublicKeySize: {
result = PQCLEAN_FALCON512_crypto_sign_verify(
reinterpret_cast<const uint8_t *>(signature.data()), signature.size(),
reinterpret_cast<const uint8_t *>(data.data()), data.size(),
reinterpret_cast<const uint8_t *>(public_key_.GetKey().data()));
break;
}
case kFalcon1024PublicKeySize: {
result = PQCLEAN_FALCON1024_crypto_sign_verify(
reinterpret_cast<const uint8_t *>(signature.data()), signature.size(),
reinterpret_cast<const uint8_t *>(data.data()), data.size(),
reinterpret_cast<const uint8_t *>(public_key_.GetKey().data()));
break;
}
default:
return util::Status(absl::StatusCode::kInvalidArgument,
"Invalid keysize.");
}
if (result != 0) {
return util::Status(absl::StatusCode::kInternal, "Signature is not valid.");
}
return util::OkStatus();
}
} // namespace subtle
} // namespace tink
} // namespace crypto