Skip to content

Commit

Permalink
going for 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michelp committed Jun 9, 2020
1 parent b7d5d1a commit c9ef529
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 49 deletions.
93 changes: 47 additions & 46 deletions META.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"
],
"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 <[email protected]>"
],
"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"
]
}
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion pgsodium.control
Original file line number Diff line number Diff line change
@@ -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 = ''

0 comments on commit c9ef529

Please sign in to comment.