What is MIME type "application/scvp-cv-request"?

A MIME type is a string that tells browsers and other tools how to handle a particular kind of file.

application/scvp-cv-request is a MIME type used for sending certificate validation requests in secure systems. It carries data that a server uses to check if a digital certificate is valid.

The format is designed for SCVP (Simple Certificate Validation Protocol) environments. It helps link systems in a public key infrastructure by standardizing how certificate validation data is exchanged.

Files that contain this data commonly use the extension SCQ. The request typically includes certificate details and validation parameters for accurate processing.

Further information on MIME type standards can be found on the IANA website.

Associated file extensions

Usage Examples

HTTP Header

When serving content with this MIME type, set the Content-Type header:


    Content-Type: application/scvp-cv-request    
  

HTML

In HTML, you can specify the MIME type in various elements:


    <a href="file.dat" type="application/scvp-cv-request">Download file</a>    
  

Server-side (Node.js)

Setting the Content-Type header in Node.js:


    const http = require('http');    
    
    http.createServer((req, res) => {    
      res.setHeader('Content-Type', 'application/scvp-cv-request');    
      res.end('Content here');    
    }).listen(3000);    
  

Associated file extensions

FAQs

What is the primary purpose of the application/scvp-cv-request MIME type?

This MIME type is used to transmit Simple Certificate Validation Protocol (SCVP) requests. It carries data sent to a server to verify the validity or status of a digital certificate within a Public Key Infrastructure (PKI).

Which file extension is associated with application/scvp-cv-request?

The standard file extension for this MIME type is .scq. You can find more details about this extension on our scq page.

How do I configure Apache or Nginx to serve .scq files correctly?

For Apache, add AddType application/scvp-cv-request .scq to your configuration or .htaccess file. For Nginx, add application/scvp-cv-request scq; to your mime.types file to ensure the server identifies the file correctly.

Can I open an .scq file in a text editor?

Generally, no, as these files typically contain binary data or ASN.1 encoded structures meant for machine processing. To inspect the contents, you would need specific PKI software or an SCVP client capable of parsing the request format.

Do web browsers support application/scvp-cv-request natively?

No, standard browsers like Chrome or Firefox do not natively render this content. If a browser encounters this MIME type, it will typically prompt the user to download the file rather than displaying it.

What is the difference between application/scvp-cv-request and application/scvp-cv-response?

The application/scvp-cv-request type is used for the initial query sent to the server (often an .scq file). The server replies with application/scvp-cv-response (often an .scs file), which contains the results of the certificate validation.

Is this MIME type related to email security?

Indirectly, yes. While it doesn't transport email itself, the SCVP protocol is often used to validate digital certificates used for S/MIME email encryption and signing, ensuring the certificates are trusted and not revoked.

General FAQ

What is a MIME type?

A MIME (Multipurpose Internet Mail Extensions) type is a standard that indicates the nature and format of a document, file, or assortment of bytes. MIME types are defined and standardized in IETF's RFC 6838.

MIME types are important because they help browsers and servers understand how to process a file. When a browser receives a file from a server, it uses the MIME type to determine how to display or handle the content, whether it's an image to display, a PDF to open in a viewer, or a video to play.

MIME types consist of a type and a subtype, separated by a slash (e.g., text/html, image/jpeg, application/pdf). Some MIME types also include optional parameters.

How do I find the MIME type for a file?

You can check the file extension or use a file identification tool such as file --mime-type on the command line. Many programming languages also provide libraries to detect MIME types.

Why are multiple MIME types listed for one extension?

Different applications and historical conventions may use alternative MIME identifiers for the same kind of file. Showing them all helps ensure compatibility across systems.