forked from tvondra/pg_vault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
META.json
34 lines (34 loc) · 1.27 KB
/
META.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "pg_vault",
"abstract": "An experimental extension for key-management of encryption keys used in pgcrypto.",
"description": "This PostgreSQL extension provides a simple in-memory vault for encryption keys (used for example with [pgcrypto][pgcrypto]). The goal of such vault is to perform cryptography without passing the keys/passphrases to the SQL functions directly, as that means that all manipulating the data need to know the actual key, the key may leak to various logs (e.g. slow query logs) and some tasks are considerably more difficult (e.g. rolling out a new key).",
"version": "0.0.1",
"maintainer": "Tomas Vondra <tomas@pgaddict.com>",
"license": "bsd",
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "9.0.0"
}
}
},
"provides": {
"pg_vault": {
"file": "pg_vault--0.0.1.sql",
"version": "0.0.1"
}
},
"resources": {
"repository": {
"url": "https://github.com:tvondra/pg_vault.git",
"web": "http://github.com/tvondra/pg_vault",
"type": "git"
}
},
"tags" : ["vault", "encryption", "key", "management"],
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"release_status" : "unstable"
}