https://github.com/federicoceratto/nim-gnutls
Nim wrapper for GnuTLS
https://github.com/federicoceratto/nim-gnutls
cryptographic-library cryptography gnutls library nim nim-lang security wrapper
Last synced: 2 months ago
JSON representation
Nim wrapper for GnuTLS
- Host: GitHub
- URL: https://github.com/federicoceratto/nim-gnutls
- Owner: FedericoCeratto
- License: lgpl-2.1
- Created: 2019-06-02T16:06:17.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-10T09:24:54.000Z (over 5 years ago)
- Last Synced: 2025-04-09T16:18:46.962Z (2 months ago)
- Topics: cryptographic-library, cryptography, gnutls, library, nim, nim-lang, security, wrapper
- Language: Nim
- Size: 97.7 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
== GnuTLS wrapper for Nim
image:https://travis-ci.org/FedericoCeratto/nim-gnutls.svg?branch=master["Build Status", link="https://travis-ci.org/FedericoCeratto/nim-gnutls"]
image:https://img.shields.io/badge/status-alpha-orange.svg[badge]
image:https://img.shields.io/github/tag/FedericoCeratto/nim-gnutls.svg[tags]
image:https://img.shields.io/badge/License-LGPL%20v2.1-blue.svg[License]WARNING: This library is under development and has not been reviewed by 3rd parties
### Features
* Wrap GnuTLS 3.6.6 (and supports other versions)
* Tested on Linux
* Basic unit tests
* No homemade crypto### Usage
Refer to the link:https://www.gnutls.org/manual/gnutls.html[official gnutls documentation]
Install the development library:
[source,bash]
----
sudo apt-get install libgnutls28-dev
nimble install gnutls
----Install the runtime dependency:
[source,bash]
----
sudo apt-get install libgnutls30
----See the tests/ dir for usage examples.
### Contributing
Testing and PRs are welcome.