MultipartText-based

multipart/signed

Signed Content

Reference for multipart/signed, the MIME type for digitally signed messages with a content part and signature part.

MIME Type Detector

Drop a file to detect its MIME type — no upload, runs in your browser

📄

Drop any file here or click to choose

HTTP Content-Type Header

HTTP Header
Content-Type: multipart/signed; charset=utf-8

Quick Facts

MIME Typemultipart/signed
CategoryMultipart
TypeText-based (human-readable)

Common Usage

multipart/signed wraps a message with its digital signature, allowing recipients to verify the sender's identity and message integrity. Used in S/MIME encrypted email, PGP/MIME signed messages, and secure document exchange where non-repudiation is required.

Code Examples

HTML
<!-- Set MIME type in meta or fetch headers -->
<meta http-equiv="Content-Type" content="multipart/signed">
Node.js
// Express.js
app.get('/file', (req, res) => {
  res.type('multipart/signed');
  res.send(data);
});

// Node.js http
res.writeHead(200, { 'Content-Type': 'multipart/signed' });
nginx
# nginx.conf — add to types block or use default
types {
    multipart/signed  signed;
}

# Or set for a specific location
location /api/ {
    default_type multipart/signed;
}

Related MIME Types

More Multipart MIME Types

Other multipart types in the Multipart family

Related Tools

Explore More MIME Types

Browse our complete reference of 185 MIME types with usage examples, HTTP headers, and code snippets.