# cryptid-native **Repository Path**: aaronjager/cryptid-native ## Basic Information - **Project Name**: cryptid-native - **Description**: 1234567889807 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-06-16 - **Last Updated**: 2023-06-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
CryptID
[![Build Native](https://github.com/cryptid-org/cryptid-native/workflows/Build%20Native/badge.svg)](https://github.com/cryptid-org/cryptid-native/actions?query=workflow%3A%22Build+Native%22) [![Build WASI](https://github.com/cryptid-org/cryptid-native/workflows/Build%20WASI/badge.svg)](https://github.com/cryptid-org/cryptid-native/actions?query=workflow%3A%22Build+WASI%22) [![Coverage Status](https://coveralls.io/repos/github/cryptid-org/cryptid-native/badge.svg?branch=master)](https://coveralls.io/github/cryptid-org/cryptid-native?branch=master) [![Total alerts](https://img.shields.io/lgtm/alerts/g/cryptid-org/cryptid-native.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/cryptid-org/cryptid-native/alerts/) [![Language grade: C/C++](https://img.shields.io/lgtm/grade/cpp/g/cryptid-org/cryptid-native.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/cryptid-org/cryptid-native/context:cpp) [![License](https://img.shields.io/github/license/cryptid-org/cryptid-native.svg)](LICENSE)
Cross-platform Identity-based Cryptography and Attribute-based Cryptography solution.
--- # CryptID.native Cross-platform C implementation of the Boneh-Franklin Identity-based Encryption system as described in [RFC 5091](https://tools.ietf.org/html/rfc5091), the Hess Identity-based Signature protocol described in [Hess-IBS](https://doi.org/10.1007/3-540-36492-7_20) and the BSW Ciphertext-Policy Attribute-based Encryption described in [BSW CP-ABE](https://doi.org/10.1109/SP.2007.11). CryptID.native provides the foundation of CryptID.js which is a WebAssembly library mainly targeting browsers. If you're new to CryptID and Identity-based Encryption, then make sure to check out the [CryptID Getting Started](https://github.com/cryptid-org/getting-started) guide. ## Building CryptID.native ### Dependencies CryptID requires the following components to be present: * gcc 5+, * [Node.js](https://nodejs.org/en/) v8+, * [GMP](https://gmplib.org/) 6+. * Please note, that [GMP-LAWL](https://github.com/cryptid-org/gmp-lawl/) is not capable of integrating with CryptID.native in a stable manner yet. Thus, the use of the vanilla GMP library is advised. ### Creating a Static Library A static library can be created using the following command: ~~~~bash ./task.sh build ~~~~ The resulting library (`libcryptid.a`) will be placed in the `build` directory. ## Example The example codes for every feature of the library is located in the `examples` directory. ## License CryptID.native is licensed under the [Apache License 2.0](LICENSE). Licenses of dependencies: * [GMP](https://gmplib.org/): [GNU LGPL v3](https://www.gnu.org/licenses/lgpl.html) * [greatest](https://github.com/silentbicycle/greatest): [ISC](https://github.com/silentbicycle/greatest/blob/master/LICENSE) * [greatest/entapment](https://github.com/silentbicycle/greatest/blob/master/contrib/entapment): [ISC](https://github.com/silentbicycle/greatest/blob/master/contrib/entapment) * [SHA](https://tools.ietf.org/html/rfc6234): [2-clause BSD License](https://tools.ietf.org/html/rfc6234#section-8.1.1) ## Acknowledgements This work is partially supported by the construction EFOP-3.6.3-VEKOP-16-2017-00002. The project is supported by the European Union, co-financed by the European Social Fund and by the 2018-1.2.1-NKP-2018-00004 Security Enhancing Technologies for the Internet of Things project.

CryptID CryptID