did you receive a doc or docx file with an extra .p7s extension ? it’s a digitally signed document
in order to read it in ubuntu you’ll have to transform it back to the regular .doc or .docx file
here’s how to do this:
- download the file
- open a terminal (CTRL+ALT+t)
- use cd to get to the folder where you downloaded the file
1 |
cd Downloads |
- copy this line in the terminal (mouse right click) and modify the .p7s file name
1 |
openssl smime -inform DER -verify -noverify -in file.docx.p7s -out file.docx |
now you have the file without the .p7s extension in the same folder you have the original file