What Media Type is encrypted text?

726 Views Asked by At

I'm encrypting a file and saving it in AWS. What Media Type (FKA MIME-type) is encrypted text? "text/plain" doesn't seem right.

1

There are 1 best solutions below

0
On BEST ANSWER

Use

application/octet-stream

which is intended for arbitrary binary data - perfect for an encrypted file that by definition can't be interpreted. (RFC2046)