From 5ab2bfb877046314847bb6ba15e0f5cbd7d634ac Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Thu, 15 Feb 2024 15:31:46 +0000 Subject: [PATCH] Cryptography section --- README.md | 12 ++++++------ packages/beecrypt.toml | 2 +- packages/gleam_crypto.toml | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index f89ed69..9c93c62 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ Looking for something to build? Check out [the suggestions list][suggestions]. - [Build Tooling](#build-tooling) - [Command Line](#command-line) - [Configuration](#configuration) + - [Cryptography](#cryptography) - [Data Structures](#data-structures) - [Databases](#databases) - [Email](#email) @@ -28,7 +29,6 @@ Looking for something to build? Check out [the suggestions list][suggestions]. - [HTTP](#http) - [HTTP Clients](#http-clients) - [HTTP Servers](#http-servers) - - [Hashing and Encryption](#hashing-and-encryption) - [JSON](#json) - [JavaScript](#javascript) - [Logging and Monitoring](#logging-and-monitoring) @@ -88,6 +88,11 @@ Looking for something to build? Check out [the suggestions list][suggestions]. - [gleam_dotenv](https://github.com/Grubba27/gleam_dotenv) - [📚](https://hexdocs.pm/gleam_dotenv/) - dotenv for Gleam - [glenvy](https://github.com/maxdeviant/glenvy) - [📚](https://hexdocs.pm/glenvy/) - A pleasant way to interact with your environment. +### Cryptography + +- [beecrypt](https://github.com/lpil/beecrypt) - [📚](https://hexdocs.pm/beecrypt/) - Buzzing Gleam bindings to the Erlang bcrypt hashing library +- [gleam_crypto](https://github.com/gleam-lang/crypto) - [📚](https://hexdocs.pm/gleam_crypto/) - A Gleam cryptography library supporting Erlang and JavaScript + ### Data Structures - [argamak](https://github.com/tynanbe/argamak) - [📚](https://hexdocs.pm/argamak/) - A tensor library for the Gleam programming language @@ -114,7 +119,6 @@ Looking for something to build? Check out [the suggestions list][suggestions]. ### Erlang and OTP - [gen_core_erlang](https://codeberg.org/kero/gleam_codegen) - [📚](https://hexdocs.pm/gen_core_erlang/) - Generate Core Erlang from Gleam (wraps the Erlang cerl compiler module) -- [gleam_crypto](https://github.com/gleam-lang/crypto) - [📚](https://hexdocs.pm/gleam_crypto/) - Gleam bindings to the BEAM cryptography functions - [gleam_erlang](https://github.com/gleam-lang/erlang) - [📚](https://hexdocs.pm/gleam_erlang/) - A Gleam library for working with Erlang - [gleam_otp](https://github.com/gleam-lang/otp) - [📚](https://hexdocs.pm/gleam_otp/) - Fault tolerant multicore Gleam programs with OTP - [gts](https://github.com/lunarmagpie/gts) - [📚](https://hexdocs.pm/gts/) - Opinionated bindings to erlang's ets tables. @@ -175,10 +179,6 @@ Looking for something to build? Check out [the suggestions list][suggestions]. - [gleam_elli](https://github.com/gleam-lang/elli) - [📚](https://hexdocs.pm/gleam_elli/) - Run Gleam HTTP services with the Elli web server - [mist](https://github.com/rawhat/mist) - [📚](https://hexdocs.pm/mist/) - a misty Gleam web server -### Hashing and Encryption - -- [beecrypt](https://github.com/lpil/beecrypt) - [📚](https://hexdocs.pm/beecrypt/) - Buzzing Gleam bindings to the Erlang bcrypt hashing library - ### JSON - [gleam_json](https://github.com/gleam-lang/json) - [📚](https://hexdocs.pm/gleam_json/) - Work with JSON in Gleam diff --git a/packages/beecrypt.toml b/packages/beecrypt.toml index aa122a7..010a7c3 100644 --- a/packages/beecrypt.toml +++ b/packages/beecrypt.toml @@ -2,4 +2,4 @@ name = "beecrypt" description = "Buzzing Gleam bindings to the Erlang bcrypt hashing library" docs_url = "https://hexdocs.pm/beecrypt/" repo_url = "https://github.com/lpil/beecrypt" -category = "Hashing and Encryption" +category = "Cryptography" diff --git a/packages/gleam_crypto.toml b/packages/gleam_crypto.toml index 867aff6..6d9ceaa 100644 --- a/packages/gleam_crypto.toml +++ b/packages/gleam_crypto.toml @@ -1,5 +1,5 @@ name = "gleam_crypto" -description = "Gleam bindings to the BEAM cryptography functions" +description = "A Gleam cryptography library supporting Erlang and JavaScript" docs_url = "https://hexdocs.pm/gleam_crypto/" repo_url = "https://github.com/gleam-lang/crypto" -category = "Erlang and OTP" +category = "Cryptography"