Skip to content

Commit

Permalink
fix problems
Browse files Browse the repository at this point in the history
  • Loading branch information
xbw886 committed Dec 3, 2024
1 parent 9b3da31 commit 58309eb
Show file tree
Hide file tree
Showing 9 changed files with 206 additions and 217 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2024 Ant Group Co., Ltd.
# Copyright 2024 Li Zhihang.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -17,9 +17,9 @@ load("//bazel:yacl.bzl", "yacl_cc_library", "yacl_cc_test")
package(default_visibility = ["//visibility:public"])

yacl_cc_library(
name = "TSet",
srcs = ["TSet.cc"],
hdrs = ["TSet.h"],
name = "tset",
srcs = ["tset.cc"],
hdrs = ["tset.h"],
deps = [
"//yacl/crypto/hash:ssl_hash",
"//yacl/crypto/hmac:hmac_sha256",
Expand All @@ -28,10 +28,10 @@ yacl_cc_library(
)

yacl_cc_test(
name = "TSet_test",
srcs = ["TSet_test.cc"],
name = "tset_test",
srcs = ["tset_test.cc"],
deps = [
":TSet",
":tset",
],
)

Expand All @@ -42,7 +42,7 @@ yacl_cc_library(
deps = [
"//yacl/crypto/ecc/openssl",
"//yacl/crypto/rand",
"//yacl/examples/primitives/sse:TSet",
"//yacl/examples/sse:tset",
"//yacl/io/rw:csv_reader",
"//yacl/io/stream:file_io",
"//yacl/math/mpint",
Expand All @@ -52,6 +52,9 @@ yacl_cc_library(
yacl_cc_test(
name = "sse_test",
srcs = ["sse_test.cc"],
data = [
"data/test_data.csv",
],
deps = [
":sse",
],
Expand Down
File renamed without changes.
Loading

0 comments on commit 58309eb

Please sign in to comment.