1d78b907 by David LaPalomento

Remove local reference to pkcs7

Use the global command not a relative link to a checkout of the project.
1 parent cd1daf5b
...@@ -7,7 +7,7 @@ echo -n "hello" | pkcs7 | openssl enc -aes-128-cbc > hello.encrypted ...@@ -7,7 +7,7 @@ echo -n "hello" | pkcs7 | openssl enc -aes-128-cbc > hello.encrypted
7 7
8 # encrypt some text and get the bytes in a format that can be easily used for 8 # encrypt some text and get the bytes in a format that can be easily used for
9 # testing in javascript 9 # testing in javascript
10 echo -n "hello" | ~/Projects/pkcs7/lib/cli.js | openssl enc -aes-128-cbc | xxd -i 10 echo -n "hello" | pkcs7 | openssl enc -aes-128-cbc | xxd -i
11 ``` 11 ```
12 12
13 Later, you can decrypt it: 13 Later, you can decrypt it:
......