Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

【OSCP】 + 在 YACL 上实现对称可搜索加密算法 #423

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
62 changes: 62 additions & 0 deletions yacl/examples/sse/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# 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.
# 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.

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"],
deps = [
"//yacl/crypto/hash:ssl_hash",
"//yacl/crypto/hmac:hmac_sha256",
"//yacl/crypto/rand",
],
)

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

yacl_cc_library(
name = "sse",
srcs = ["sse.cc"],
hdrs = ["sse.h"],
deps = [
"//yacl/crypto/ecc/openssl",
"//yacl/crypto/rand",
"//yacl/examples/sse:tset",
"//yacl/io/rw:csv_reader",
"//yacl/io/stream:file_io",
"//yacl/math/mpint",
],
)

yacl_cc_test(
name = "sse_test",
srcs = ["sse_test.cc"],
data = [
"data/test_data.csv",
],
deps = [
":sse",
"//yacl/crypto/rand",
],
)
15,061 changes: 15,061 additions & 0 deletions yacl/examples/sse/data/income_census_test.csv

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions yacl/examples/sse/data/test_data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
ID,age,workclass,fnlwgt,education,education_num,marital_status,occupation,relationship,race,gender,capital_gain,capital_loss,hours_per_week,native_country
ID_130162,25,Private,226802,11th,7,Never-married,Machine-op-inspct,Own-child,Black,Male,0,0,40,United-States
ID_130163,38,Private,89814,HS-grad,9,Married-civ-spouse,Farming-fishing,Husband,White,Male,0,0,50,United-States
ID_130164,28,Local-gov,336951,Assoc-acdm,12,Married-civ-spouse,Protective-serv,Husband,White,Male,0,0,40,United-States
ID_130165,44,Private,160323,Some-college,10,Married-civ-spouse,Machine-op-inspct,Husband,Black,Male,7688,0,40,United-States
Loading