Sample code for 30+ languages & platforms
SQL Server

Check if a MIME Entity is Signed (S/MIME)

See more MIME Examples

Demonstrates the Chilkat Mime.IsSigned method, which returns whether the entity is a complete CMS/PKCS #7 signed S/MIME wrapper, including detached multipart/signed and opaque forms. It takes no arguments.

Note: The file path is relative to the application's current working directory. Absolute paths may also be used. Supply the path to your own file.

Background: Before verifying a signature you need to know one is present, and this is the check. A signed S/MIME message comes in two shapes — detached (multipart/signed, signature alongside the content) and opaque (application/pkcs7-mime, content wrapped inside the signature) — and this recognizes both. Follow a true result with Verify.

Chilkat SQL Server Downloads

SQL Server
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    DECLARE @sTmp0 nvarchar(4000)
    DECLARE @success int
    SELECT @success = 0

    --  Demonstrates the Mime.IsSigned method, which returns whether the entity is a complete CMS/PKCS #7 signed S/MIME wrapper.  It takes no arguments.

    DECLARE @mime int
    EXEC @hr = sp_OACreate 'Chilkat.Mime', @mime OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    EXEC sp_OAMethod @mime, 'LoadMimeFile', @success OUT, 'qa_data/signed.eml'
    IF @success = 0
      BEGIN
        EXEC sp_OAGetProperty @mime, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @mime
        RETURN
      END

    EXEC sp_OAMethod @mime, 'IsSigned', @iTmp0 OUT
    IF @iTmp0
      BEGIN

        PRINT 'This is a signed S/MIME message.'
      END
    ELSE
      BEGIN

        PRINT 'This is not a signed S/MIME message.'
      END

    EXEC @hr = sp_OADestroy @mime


END
GO