aboutsummaryrefslogtreecommitdiffstats
path: root/cdf/src/cdf-prop-value/README.md
diff options
context:
space:
mode:
authorHansen, Tony (th1395) <th1395@att.com>2018-03-29 12:57:06 +0000
committerHansen, Tony (th1395) <th1395@att.com>2018-03-29 12:57:23 +0000
commitbd5129dbad044907bd1818b2f8cda3c60da9b3e8 (patch)
treeedc355d63e440a87a1c97ad65357681f279e6ba0 /cdf/src/cdf-prop-value/README.md
parent4e1b45a2e3e474606965ca3b66bd5f82f526b0ce (diff)
remove most of this code for R2 Beijing
This package is not being used in R2 Beijing because of the move to Kubernetes with OOM. If you need this package, use the R1 Amsterdam release packages. I'm not removing the repo though because it is likely that we will need to add things in R3 Casablanca. Change-Id: I40a46886cfa2f3803f97918ad5cea149f5fcf696 Signed-off-by: Hansen, Tony (th1395) <th1395@att.com> Issue-ID: CCSDK-231
Diffstat (limited to 'cdf/src/cdf-prop-value/README.md')
-rw-r--r--cdf/src/cdf-prop-value/README.md53
1 files changed, 0 insertions, 53 deletions
diff --git a/cdf/src/cdf-prop-value/README.md b/cdf/src/cdf-prop-value/README.md
deleted file mode 100644
index f83617e..0000000
--- a/cdf/src/cdf-prop-value/README.md
+++ /dev/null
@@ -1,53 +0,0 @@
-org.onap.dcae.cdf [^1]
-======================
-
-This repository contails two modules:
-* `cdf-util`: a port of the support functions needed to support CdfPortValue command
-* `cdf-prop-value` : contains only the CdfPortValue command
-
-## Building
-
-To build:
-* `cd cdf-util-build; mvn package`
-
-## Usage
-
-Command: `/opt/cdf/bin/getpropvalue`
-
-`/opt/cdf/bin/getpropvalue [-x] -n property -f property-file`
- Extract the named value from the given property-file (or full pathname[^2])
-
-`/opt/cdf/bin/getpropvalue -e method [-n property] [-s salt] -v value`
- Encrypt the given property with the given name and value
-
-`/opt/cdf/bin/getpropvalue -u value`
- Decrypt the given value, expressed as a triple METHOD:HEXSALT:HEXVAL
-
-`/opt/cdf/bin/setencryptedvalues` (same as `/opt/cdf/bin/getpropvalue -E`)
- Encrypt all lines that look like ENCRYPTME.METHOD.name=value
-
-## Examples
-
- # using config files:
-
- # echo ENCRYPTME.AES.input=bogus | /opt/cdf/bin/setencryptedvalues > testconfig.txt
-
- # cat testconfig.txt
- input.x=AES:353438323235:bf046d8a3e8b12fb678f5dec1e9d5743
-
- # /opt/cdf/bin/getpropvalue -x -n input -f /home/ht1659/src/cdf/testconfig.txt
- bogus
-
- # No file:
-
- # /opt/cdf/bin/getpropvalue -e AES -v bogus
- AES:34383638353831:0e699f0f818593e3adbc642efed20341
-
- # /opt/cdf/bin/getpropvalue -u AES:323937323833:8d95d8803978c4b13497b394d56a4a9c
- bogus
-
-
-
-[^1]: Version 1.0, 24 Dec 2015
-
-[^2]: The property-file valued currently requires a rooted (full) pathname.