[go: nahoru, domu]

blob: 6edf07555d1f8e1b20848e0ce0027d780dbddf60 [file] [log] [blame]
// Copyright 2020 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
//
// https://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.
#ifndef THIRD_PARTY_PRIVATE_MEMBERSHIP_SRC_INTERNAL_RLWE_ID_UTILS_H_
#define THIRD_PARTY_PRIVATE_MEMBERSHIP_SRC_INTERNAL_RLWE_ID_UTILS_H_
#include <string>
#include "third_party/private-join-and-compute/src/crypto/ec_commutative_cipher.h"
#include "third_party/private_membership/src/private_membership.pb.h"
#include "third_party/private_membership/base/private_membership_export.h"
#include "third_party/private_membership/src/private_membership_rlwe.pb.h"
#include "third_party/shell-encryption/src/statusor.h"
namespace private_membership {
namespace rlwe {
// Computes the representation of an encrypted ID stored within buckets starting
// from the plaintext.
//
// Returns an error when the cryptographic functions fails or the parameters are
// invalid.
PRIVATE_MEMBERSHIP_EXPORT ::rlwe::StatusOr<std::string>
ComputeBucketStoredEncryptedId(const RlwePlaintextId& id,
const EncryptedBucketsParameters& params,
::private_join_and_compute::ECCommutativeCipher* ec_cipher,
::private_join_and_compute::Context* ctx);
// Computes the representation of an encrypted ID stored within buckets using
// the encrypted ID.
//
// Returns an error when the cryptographic functions fails or the parameters are
// invalid.
PRIVATE_MEMBERSHIP_EXPORT ::rlwe::StatusOr<std::string>
ComputeBucketStoredEncryptedId(absl::string_view encrypted_id,
const EncryptedBucketsParameters& params,
::private_join_and_compute::Context* ctx);
// Function used to injectively hash RlwePlaintextId proto to string. This hash
// is not cryptographically secure, nor very compact.
PRIVATE_MEMBERSHIP_EXPORT std::string HashRlwePlaintextId(
const RlwePlaintextId& id);
// Function used to hash the nonsensitive portion of a RlwePlaintextId, using a
// salt to force adversaries to recompute rainbow tables.
PRIVATE_MEMBERSHIP_EXPORT ::rlwe::StatusOr<std::string>
HashNonsensitiveIdWithSalt(absl::string_view nsid, HashType hash_type,
::private_join_and_compute::Context* ctx);
} // namespace rlwe
} // namespace private_membership
#endif // THIRD_PARTY_PRIVATE_MEMBERSHIP_SRC_INTERNAL_RLWE_ID_UTILS_H_