Skip to content

Commit

Permalink
Merge pull request #49 from tweenk/internal_export
Browse files Browse the repository at this point in the history
Partial export of internal changes.
  • Loading branch information
mihaelaion-code authored Apr 3, 2024
2 parents f77f26f + 4bcb674 commit 4076b64
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 4 deletions.
1 change: 1 addition & 0 deletions private_join_and_compute/crypto/dodis_yampolskiy_prf/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ cc_library(

cc_test(
name = "bb_oblivious_signature_test",
timeout = "long",
srcs = [
"bb_oblivious_signature_test.cc",
],
Expand Down
1 change: 1 addition & 0 deletions private_join_and_compute/crypto/fixed_base_exp.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

#include "private_join_and_compute/crypto/fixed_base_exp.h"

#include <cstdint>
#include <memory>
#include <string>
#include <vector>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,16 @@
#include "private_join_and_compute/crypto/simultaneous_fixed_bases_exp.h"

#include <algorithm>
#include <cstddef>
#include <memory>
#include <utility>
#include <vector>

#include "absl/memory/memory.h"
#include "absl/strings/str_cat.h"
#include "private_join_and_compute/crypto/big_num.h"
#include "private_join_and_compute/crypto/mont_mul.h"
#include "private_join_and_compute/util/status.inc"

namespace private_join_and_compute {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,14 @@
#ifndef PRIVATE_JOIN_AND_COMPUTE_CRYPTO_SIMULTANEOUS_FIXED_BASES_H_
#define PRIVATE_JOIN_AND_COMPUTE_CRYPTO_SIMULTANEOUS_FIXED_BASES_H_

#include <cstddef>
#include <memory>
#include <vector>

#include "private_join_and_compute/crypto/big_num.h"
#include "private_join_and_compute/crypto/ec_point.h"
#include "private_join_and_compute/util/status.inc"

namespace private_join_and_compute {

// Template type definitions for elements of the multiplicative group mod n.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include <gmock/gmock.h>
#include <gtest/gtest.h>

#include <cstdint>
#include <memory>
#include <utility>
#include <vector>
Expand Down
2 changes: 1 addition & 1 deletion private_join_and_compute/py/ciphers/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
# Description:
# Contains libraries for openssl big num operations.
load("@com_google_protobuf//:protobuf.bzl", "py_proto_library")
load("@rules_python//python:defs.bzl", "py_library", "py_test")
load("@pip_deps//:requirements.bzl", "requirement")
load("@rules_python//python:defs.bzl", "py_library", "py_test")

package(default_visibility = ["//visibility:public"])

Expand Down
2 changes: 1 addition & 1 deletion private_join_and_compute/py/crypto_util/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
# Description:
# Contains libraries for openssl big num operations.

load("@rules_python//python:defs.bzl", "py_library", "py_test")
load("@pip_deps//:requirements.bzl", "requirement")
load("@rules_python//python:defs.bzl", "py_library", "py_test")

package(default_visibility = ["//visibility:public"])

Expand Down
4 changes: 2 additions & 2 deletions private_join_and_compute/util/status.inc
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
* limitations under the License.
*/

#include "absl/status/status.h"
#include "absl/status/statusor.h"
#include "absl/status/status.h" // IWYU pragma: export
#include "absl/status/statusor.h" // IWYU pragma: export

#include "private_join_and_compute/util/status_macros.h"

Expand Down

0 comments on commit 4076b64

Please sign in to comment.