diff --git a/META.json b/META.json index 2f1098c..0732f5c 100644 --- a/META.json +++ b/META.json @@ -1,49 +1,50 @@ { - "name": "pgsodium", - "abstract": "Postgres extension for libsodium functions", - "description": "pgsodium is a PostgreSQL extension that exposes modern libsodium based cryptographic functions to SQL.", - "version": "1.1.0", - "maintainer": [ - "Michel Pelletier " - ], - "license": "postgresql", - "provides": { - "pgsodium": { - "abstract": "Postgres extension for libsodium functions", - "file": "src/pgsodium.h", - "docfile": "README.md", - "version": "1.1.0" - } - }, - "prereqs": { - "runtime": { - "requires": { - "PostgreSQL": "10.0.0" - } - } - }, - "resources": { - "bugtracker": { - "web": "https://github.com/michelp/pgsodium/issues/" - }, - "repository": { - "url": "git://github.com/michelp/pgsodium.git", - "web": "https://github.com/michelp/pgsodium/", + "name": "pgsodium", + "abstract": "Postgres extension for libsodium functions", + "description": "pgsodium is a PostgreSQL extension that exposes modern libsodium based cryptographic functions to SQL.", + "version": "1.1.1", + "maintainer": [ + "Michel Pelletier " + ], + "release_status": "alpha", + "license": "postgresql", + "provides": { + "pgsodium": { + "abstract": "Postgres extension for libsodium functions", + "file": "src/pgsodium.h", + "docfile": "README.md", + "version": "1.1.1" + } + }, + "prereqs": { + "runtime": { + "requires": { + "PostgreSQL": "10.0.0" + } + } + }, + "resources": { + "bugtracker": { + "web": "https://github.com/michelp/pgsodium/issues/" + }, + "repository": { + "url": "git://github.com/michelp/pgsodium.git", + "web": "https://github.com/michelp/pgsodium/", "type": "git" - } - }, - "generated_by": "David E. Wheeler", - "meta-spec": { - "version": "1.0.0", - "url": "https://pgxn.org/meta/spec.txt" - }, - "tags": [ - "sodium", - "crypto", - "cryptography", - "encryption", - "random", - "asymmetric encryption", - "public key" - ] + } + }, + "generated_by": "David E. Wheeler", + "meta-spec": { + "version": "1.0.0", + "url": "https://pgxn.org/meta/spec.txt" + }, + "tags": [ + "sodium", + "crypto", + "cryptography", + "encryption", + "random", + "asymmetric encryption", + "public key" + ] } diff --git a/README.md b/README.md index c001f45..1820dc7 100644 --- a/README.md +++ b/README.md @@ -617,14 +617,27 @@ Documentation](https://doc.libsodium.org/public-key_cryptography/public-key_sign ### Sealed boxes +[See libsodium docs](https://doc.libsodium.org/public-key_cryptography/sealed_boxes) + ## Hashing +[See libsodium docs](https://doc.libsodium.org/hashing) + ## Password hashing +[See libsodium docs](https://doc.libsodium.org/password_hashing) + ## Key Derivation +[See libsodium docs](https://doc.libsodium.org/key_derivation) + ## Key Exchange -## Advanced +[See libsodium docs](https://doc.libsodium.org/key_exchange) + +## HMAC512 + +[See libsodium docs](https://doc.libsodium.org/advanced/hmac-sha2) + + -### HMAC512 diff --git a/pgsodium.control b/pgsodium.control index 08cb20d..90c856f 100644 --- a/pgsodium.control +++ b/pgsodium.control @@ -1,5 +1,5 @@ # pgsodium extension comment = 'Postgres extension for libsodium functions' -default_version = '1.1.0' +default_version = '1.1.1' relocatable = true requires = ''