highctidh


Namehighctidh JSON
Version 1.0.2024012400 PyPI version JSON
download
home_page
Summaryhighctidh bindings with included C library
upload_time2024-01-24 17:52:11
maintainerJacob Appelbaum
docs_urlNone
authorJacob Appelbaum
requires_python>=3.9.6
license
keywords post-quantum cryptography cryptography csidh ctidh c highctidh
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![highctidh build status](https://ci.codeberg.org/api/badges/vula/highctidh/status.svg "highctidh build status")

# Warning and notice

This is an unofficial fork of high-ctidh. This is highly experimental software
and it has not yet been reviewed for security considerations. We encourage
users of this software to assume that there are vulnerabilities until a review
confirms otherwise.

# Quick start

The `highctidh` project offers three compatible interfaces that all use the
same underlying C or assembler implementations:
- C Library
- Python module
- Golang module

## C library

Build and install the C library for each field size with required headers:
```
make
sudo make install
sudo ldconfig
```

After installing the libraries it is possible to use them in normal C programs.
To build and run the example C programs that use the libraries:
```
make examples
make examples-run
```

## Python bindings

Python bindings include the required shared libraries and do not require
`libhighctidh_*.so` to be installed on the system.

Quickly install the latest release from `pypi` in a virtual environment:
```
python3 -m venv venv
source venv/bin/activate
pip install highctidh
```

Build the highctidh Python bindings as a Python wheel and then install it:
```
make wheel
pip install --force-reinstall dist/highctidh-*.whl
```

Build and install a Debian GNU/Linux package containing the Python module:
```
make deb
sudo dpkg -i python3-highctidh_*.deb
```

## Golang bindings

Add the golang bindings to a golang project:
```
go get -u https://codeberg.org/vula/highctidh/ctidh511
go get -u https://codeberg.org/vula/highctidh/ctidh512
go get -u https://codeberg.org/vula/highctidh/ctidh1024
go get -u https://codeberg.org/vula/highctidh/ctidh2048
```

# highctidh improvements

This fork enhances high-ctidh with additional Makefile targets including
building high-ctidh as four shared libraries, one for each key size of 511,
512, 1024, and 2048. Python bindings are additionally added, as well as
optional Debian packaging of both the shared library object files and the
Python module. The Python bindings were made in concert with the author of the
Golang bindings which are now included. Both bindings were built around the
same shared objects for cross verification purposes. Currently this library is
fast on the `amd64`/`x86_64` CPU architecture and functional but much slower
with other CPU architectures. The portable backend was generated using the
`fiat-crypto` project which uses a "Correct-by-Construction" approach; see
`doc/PRIMES.md` for more information.  Tested architectures for the C library
include: `amd64`/`x86_64`  (with and without avx2), `arm32v5`, `arm32v6`,
`arm32v7`, `arm64v8`/`aarch64`/`arm64`, `i386`, `loongarch64/Loongson`, `mips`,
`mipsel`, `mips64`, `mips64el`, `POWER8/ppc64`, `POWER9/ppc64le`, `riscv64`,
`s390x`, and `sparc64`.

## Golang bindings

The Golang bindings compile and should be functional on `amd64`/`x86_64`,
`arm32v5`, `arm32v6`, `arm32v7`, `arm64v8`/`aarch64`/`arm64`, `i386`, `ppc64`,
`ppc64le`, `riscv64`, `s390x`, `mips`, `mipsle`, `mips64`, `mips64le`.  The
`misc/test-golang-cross.sh` script runs tests on the host build architecture
and then attempts to cross-compile for each listed architecture.  The
`.woodpecker/golang.yml` attempts to perform a cross-compile for all listed
golang versions and enumerated architectures.  Native builds for the Golang
bindings should be functional on `loong64` and `sparc64` but this is currently
untested. Go version 1.21 is used to build and test in
`.woodpecker/golang.yml`.

## Python bindings

The Python bindings build and should be functional on `amd64`, `arm32/armv7l`,
`arm32v5`, `arm32v6`, `arm32v7`, `arm64`, `i386`, `ppc64le`, `riscv64`,
`s390x`, and `mips64el`. Python 3.9, 3.10, 3.11, and 3.12 are used to build and
test in `.woodpecker/qemu-python-clang.yml`.

Debian packages and Python wheels that contain everything needed to use
`highctidh` build with the `make -f Makefile.packages packages` Makefile target
for `amd64`, `arm32/armv7l`, `arm32/armv5`, `arm64`, `i386`, `mips64el`,
`ppc64el`, `riscv64`, and `s390x`.

## Performance

Rough performance numbers are available in `docs/BENCHMARKS.md`. We recommend
using `gcc` 10 or later as the compiler except on 32-bit platforms where we
recommend `clang` 14 or later.

## Testing

We attempt to comprehensively test changes to this software in a continuous
integration environment. Testing includes `clang`, `gcc`, native builds on
`linux/amd64` and `linux/arm64`, as well as `qemu` builds for almost all other
supported architectures. Please consult the relevant configuration files in
`.woodpecker/` for more information.

To test without installing run the `test` target:
```
   make test
```

The C library and bindings have been tested on the following operating systems:
- Alpine v3.18 (musl libc)
- Alpine v3.19 (musl libc)
- CheriBSD
- Debian Sid (GNU libc)
- Debian Bookworm (GNU libc)
- FreeBSD
- HardenedBSD (FreeBSD libc)
- MacOS
- OpenBSD
- Ubuntu Mantic (GNU libc)
- Ubuntu Noble (GNU libc)

## Notes on building

Building on CheriBSD, FreeBSD, and OpenBSD building is supported using the
`gmake` command. GNU/Linux and MacOS are supported with the `make` command.

### Additional notes on building the C library
 
To build and install we recommend:
```
   sudo apt install gcc clang make
   make
   sudo make install
```

To build and install the shared library files using the
"Correct-by-Construction" fiat-crypto portable C backend:
```
    make libhighctidh.so HIGHCTIDH_PORTABLE=1
    sudo make install
```
The fiat-crypto portable C backend works on all platforms.

To build and install the shared library files using the original artisanal
`x86_64` assembler backend:
```
    make libhighctidh.so HIGHCTIDH_PORTABLE=0
    sudo make install
```

The original artisanal assembler backend works only on the `x86_64` platform.
It has been modified slightly for compatibility with LLVM-`as`/`clang`.
Hand written assembler contributions for other platforms are welcome.

By default `HIGHCTIDH_PORTABLE=1` is enabled for all platforms unless
the library is installed via the Python package, in which case optimized
implementations will be used where possible.


## Example C library usage

An example C program that can use any of the
libhighctidh_{511,512,1024,2048}.so libraries is available in
`src/example-ctidh.c`. Use the `make examples` target to build `example-ctidh511`,
`/example-ctidh512`, `example-ctidh1024`, and `example-ctidh2048` programs.

## Example Python module usage

A basic Python benchmarking program `misc/highctidh-simple-benchmark.py` shows
general performance numbers. Python tests may be run with `pytest` and should be
functional without `pytest` assuming the library is installed. If the library
path includes the build directory as is done in `test.sh`, `pytest` or python
should be able to run the tests without installation. 

### Additional information

More information about the Python bindings including installation instructions
are available in the `docs/README.python.md` file.

The Golang bindings behave as any normal Golang module/package.

The `fiat-crypto` code synthesis is described in `misc/fiat-docker/README.md`
and the documentation provides instructions for reproducible C code generation.

The original released README is `docs/README.original.md`.
The original website was https://ctidh.isogeny.org/software.html

# Acknowledgements

The original authors of this software released high-ctidh in the public domain.
All contributions made in this fork are also in the public domain.

Please consult `docs/AUTHORS.md` for the original authorship informaton.

This forked project is funded through the [NGI Assure
Fund](https://nlnet.nl/assure), a fund established by [NLnet](https://nlnet.nl)
with financial support from the European Commission's [Next Generation
Internet](https://ngi.eu) program. Learn more on the [NLnet project
page](https://nlnet.nl/project/Vula#ack).


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "highctidh",
    "maintainer": "Jacob Appelbaum",
    "docs_url": null,
    "requires_python": ">=3.9.6",
    "maintainer_email": "jacob@appelbaum.net",
    "keywords": "post-quantum cryptography,cryptography,csidh,ctidh,C,highctidh",
    "author": "Jacob Appelbaum",
    "author_email": "jacob@appelbaum.net",
    "download_url": "https://files.pythonhosted.org/packages/07/2d/bb33246fb5e14fa03f1b119e43edc64abd87725300965503884a8212fefd/highctidh-1.0.2024012400.tar.gz",
    "platform": null,
    "description": "![highctidh build status](https://ci.codeberg.org/api/badges/vula/highctidh/status.svg \"highctidh build status\")\n\n# Warning and notice\n\nThis is an unofficial fork of high-ctidh. This is highly experimental software\nand it has not yet been reviewed for security considerations. We encourage\nusers of this software to assume that there are vulnerabilities until a review\nconfirms otherwise.\n\n# Quick start\n\nThe `highctidh` project offers three compatible interfaces that all use the\nsame underlying C or assembler implementations:\n- C Library\n- Python module\n- Golang module\n\n## C library\n\nBuild and install the C library for each field size with required headers:\n```\nmake\nsudo make install\nsudo ldconfig\n```\n\nAfter installing the libraries it is possible to use them in normal C programs.\nTo build and run the example C programs that use the libraries:\n```\nmake examples\nmake examples-run\n```\n\n## Python bindings\n\nPython bindings include the required shared libraries and do not require\n`libhighctidh_*.so` to be installed on the system.\n\nQuickly install the latest release from `pypi` in a virtual environment:\n```\npython3 -m venv venv\nsource venv/bin/activate\npip install highctidh\n```\n\nBuild the highctidh Python bindings as a Python wheel and then install it:\n```\nmake wheel\npip install --force-reinstall dist/highctidh-*.whl\n```\n\nBuild and install a Debian GNU/Linux package containing the Python module:\n```\nmake deb\nsudo dpkg -i python3-highctidh_*.deb\n```\n\n## Golang bindings\n\nAdd the golang bindings to a golang project:\n```\ngo get -u https://codeberg.org/vula/highctidh/ctidh511\ngo get -u https://codeberg.org/vula/highctidh/ctidh512\ngo get -u https://codeberg.org/vula/highctidh/ctidh1024\ngo get -u https://codeberg.org/vula/highctidh/ctidh2048\n```\n\n# highctidh improvements\n\nThis fork enhances high-ctidh with additional Makefile targets including\nbuilding high-ctidh as four shared libraries, one for each key size of 511,\n512, 1024, and 2048. Python bindings are additionally added, as well as\noptional Debian packaging of both the shared library object files and the\nPython module. The Python bindings were made in concert with the author of the\nGolang bindings which are now included. Both bindings were built around the\nsame shared objects for cross verification purposes. Currently this library is\nfast on the `amd64`/`x86_64` CPU architecture and functional but much slower\nwith other CPU architectures. The portable backend was generated using the\n`fiat-crypto` project which uses a \"Correct-by-Construction\" approach; see\n`doc/PRIMES.md` for more information.  Tested architectures for the C library\ninclude: `amd64`/`x86_64`  (with and without avx2), `arm32v5`, `arm32v6`,\n`arm32v7`, `arm64v8`/`aarch64`/`arm64`, `i386`, `loongarch64/Loongson`, `mips`,\n`mipsel`, `mips64`, `mips64el`, `POWER8/ppc64`, `POWER9/ppc64le`, `riscv64`,\n`s390x`, and `sparc64`.\n\n## Golang bindings\n\nThe Golang bindings compile and should be functional on `amd64`/`x86_64`,\n`arm32v5`, `arm32v6`, `arm32v7`, `arm64v8`/`aarch64`/`arm64`, `i386`, `ppc64`,\n`ppc64le`, `riscv64`, `s390x`, `mips`, `mipsle`, `mips64`, `mips64le`.  The\n`misc/test-golang-cross.sh` script runs tests on the host build architecture\nand then attempts to cross-compile for each listed architecture.  The\n`.woodpecker/golang.yml` attempts to perform a cross-compile for all listed\ngolang versions and enumerated architectures.  Native builds for the Golang\nbindings should be functional on `loong64` and `sparc64` but this is currently\nuntested. Go version 1.21 is used to build and test in\n`.woodpecker/golang.yml`.\n\n## Python bindings\n\nThe Python bindings build and should be functional on `amd64`, `arm32/armv7l`,\n`arm32v5`, `arm32v6`, `arm32v7`, `arm64`, `i386`, `ppc64le`, `riscv64`,\n`s390x`, and `mips64el`. Python 3.9, 3.10, 3.11, and 3.12 are used to build and\ntest in `.woodpecker/qemu-python-clang.yml`.\n\nDebian packages and Python wheels that contain everything needed to use\n`highctidh` build with the `make -f Makefile.packages packages` Makefile target\nfor `amd64`, `arm32/armv7l`, `arm32/armv5`, `arm64`, `i386`, `mips64el`,\n`ppc64el`, `riscv64`, and `s390x`.\n\n## Performance\n\nRough performance numbers are available in `docs/BENCHMARKS.md`. We recommend\nusing `gcc` 10 or later as the compiler except on 32-bit platforms where we\nrecommend `clang` 14 or later.\n\n## Testing\n\nWe attempt to comprehensively test changes to this software in a continuous\nintegration environment. Testing includes `clang`, `gcc`, native builds on\n`linux/amd64` and `linux/arm64`, as well as `qemu` builds for almost all other\nsupported architectures. Please consult the relevant configuration files in\n`.woodpecker/` for more information.\n\nTo test without installing run the `test` target:\n```\n   make test\n```\n\nThe C library and bindings have been tested on the following operating systems:\n- Alpine v3.18 (musl libc)\n- Alpine v3.19 (musl libc)\n- CheriBSD\n- Debian Sid (GNU libc)\n- Debian Bookworm (GNU libc)\n- FreeBSD\n- HardenedBSD (FreeBSD libc)\n- MacOS\n- OpenBSD\n- Ubuntu Mantic (GNU libc)\n- Ubuntu Noble (GNU libc)\n\n## Notes on building\n\nBuilding on CheriBSD, FreeBSD, and OpenBSD building is supported using the\n`gmake` command. GNU/Linux and MacOS are supported with the `make` command.\n\n### Additional notes on building the C library\n \nTo build and install we recommend:\n```\n   sudo apt install gcc clang make\n   make\n   sudo make install\n```\n\nTo build and install the shared library files using the\n\"Correct-by-Construction\" fiat-crypto portable C backend:\n```\n    make libhighctidh.so HIGHCTIDH_PORTABLE=1\n    sudo make install\n```\nThe fiat-crypto portable C backend works on all platforms.\n\nTo build and install the shared library files using the original artisanal\n`x86_64` assembler backend:\n```\n    make libhighctidh.so HIGHCTIDH_PORTABLE=0\n    sudo make install\n```\n\nThe original artisanal assembler backend works only on the `x86_64` platform.\nIt has been modified slightly for compatibility with LLVM-`as`/`clang`.\nHand written assembler contributions for other platforms are welcome.\n\nBy default `HIGHCTIDH_PORTABLE=1` is enabled for all platforms unless\nthe library is installed via the Python package, in which case optimized\nimplementations will be used where possible.\n\n\n## Example C library usage\n\nAn example C program that can use any of the\nlibhighctidh_{511,512,1024,2048}.so libraries is available in\n`src/example-ctidh.c`. Use the `make examples` target to build `example-ctidh511`,\n`/example-ctidh512`, `example-ctidh1024`, and `example-ctidh2048` programs.\n\n## Example Python module usage\n\nA basic Python benchmarking program `misc/highctidh-simple-benchmark.py` shows\ngeneral performance numbers. Python tests may be run with `pytest` and should be\nfunctional without `pytest` assuming the library is installed. If the library\npath includes the build directory as is done in `test.sh`, `pytest` or python\nshould be able to run the tests without installation. \n\n### Additional information\n\nMore information about the Python bindings including installation instructions\nare available in the `docs/README.python.md` file.\n\nThe Golang bindings behave as any normal Golang module/package.\n\nThe `fiat-crypto` code synthesis is described in `misc/fiat-docker/README.md`\nand the documentation provides instructions for reproducible C code generation.\n\nThe original released README is `docs/README.original.md`.\nThe original website was https://ctidh.isogeny.org/software.html\n\n# Acknowledgements\n\nThe original authors of this software released high-ctidh in the public domain.\nAll contributions made in this fork are also in the public domain.\n\nPlease consult `docs/AUTHORS.md` for the original authorship informaton.\n\nThis forked project is funded through the [NGI Assure\nFund](https://nlnet.nl/assure), a fund established by [NLnet](https://nlnet.nl)\nwith financial support from the European Commission's [Next Generation\nInternet](https://ngi.eu) program. Learn more on the [NLnet project\npage](https://nlnet.nl/project/Vula#ack).\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "highctidh bindings with included C library",
    "version": "1.0.2024012400",
    "project_urls": {
        "Documentation": "https://codeberg.org/vula/highctidh",
        "Source": "https://codeberg.org/vula/highctidh"
    },
    "split_keywords": [
        "post-quantum cryptography",
        "cryptography",
        "csidh",
        "ctidh",
        "c",
        "highctidh"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "072dbb33246fb5e14fa03f1b119e43edc64abd87725300965503884a8212fefd",
                "md5": "240c1ed18598754e02eab97a8c2ed3f2",
                "sha256": "8755ce5d830a5b05a8f918a05c904ec059e68df22daf0ec58b3f870c8690bfa8"
            },
            "downloads": -1,
            "filename": "highctidh-1.0.2024012400.tar.gz",
            "has_sig": false,
            "md5_digest": "240c1ed18598754e02eab97a8c2ed3f2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9.6",
            "size": 1778157,
            "upload_time": "2024-01-24T17:52:11",
            "upload_time_iso_8601": "2024-01-24T17:52:11.365689Z",
            "url": "https://files.pythonhosted.org/packages/07/2d/bb33246fb5e14fa03f1b119e43edc64abd87725300965503884a8212fefd/highctidh-1.0.2024012400.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-24 17:52:11",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": true,
    "codeberg_user": "vula",
    "codeberg_project": "highctidh",
    "lcname": "highctidh"
}
        
Elapsed time: 0.23972s