Remove local reference to pkcs7
Use the global command not a relative link to a checkout of the project.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -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: | ... | ... |
-
Please register or sign in to post a comment