8000 GitHub - usafchn/my-yacl: YACL (Yet Another Crypto library) is a C++ library that contains modules and utilities which other SecretFlow code depends on.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
forked from secretflow/yacl

YACL (Yet Another Crypto library) is a C++ library that contains modules and utilities which other SecretFlow code depends on.

License

Notifications You must be signed in to change notification settings

usafchn/my-yacl

 
 

Repository files navigation

YACL (Yet Another Common crypto Library)

CircleCI OpenSSF Scorecard

Yacl is a C++ library that contains common cryptgraphy, network and io modules which other SecretFlow code depends on. The crypto modules in Yacl implement many state-of-art secure computation protocols, including primitives like OT, VOLE, TPRE, and tools like PRG, RO. Check the full list of Yacl's supported algorithms in ALGORITHMS.md.

Supported platforms:

Linux x86_64 Linux aarch64 macOS x86_64 macOS Apple Silicon Windows x86_64 Windows WSL2 x86_64
yes yes yes1 yes no yes1
  1. Yacl has not been thoroughly tested on these platforms.

Repo Layout

  • base: some basic types and utils in yacl.
  • crypto: a crypto library desigend for secure computation and so on.
    • base: basic/standarized crypto, i.e. AES, hashing.
    • primitives: crypto primitives, i.e. OT, DPF.
    • tools: theoretical crypto tools, i.e. Random Oracle (RO), PRG.
    • utils: easy-to-use crypto utilities.
  • io: a simple streaming-based io library.
  • link: a simple rpc-based MPI framework, providing the SPMD parallel programming capability.

Prerequisites

Build & UnitTest

# build as debug
bazel build //... -c dbg

# build as release
bazel build //... -c opt

# test
bazel test //...

# [optional] build & test with ASAN if you're not on MacOS
bazel build //... -c dbg --config=asan
bazel test //... --config=asan -c dbg

# [optional] build & test with ASAN on MacOS
bazel build //... -c dbg --config=macos-asan
bazel test //... --config=macos-asan -c dbg

License

See LICENSE and NOTICE.md

About

YACL (Yet Another Crypto library) is a C++ library that contains modules and utilities which other SecretFlow code depends on.

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 94.0%
  • Starlark 5.6%
  • C 0.4%
0