SMIME man page on Fedora

Man page or keyword search:  
man Server   31170 pages
apropos Keyword Search (all sections)
Output format
Fedora logo
[printable version]

SMIME(3)	      User Contributed Perl Documentation	      SMIME(3)

NAME
       Crypt::SMIME - S/MIME message signing, verification, encryption and
       decryption

SYNOPSIS
	 use Crypt::SMIME;

	 my $plain = <<'EOF';
	 From: alice@example.org
	 To: bob@example.com
	 Subject: Crypt::SMIME test

	 This is a test mail. Please ignore...
	 EOF

	 my $smime = Crypt::SMIME->new();
	 $smime->setPrivateKey($privkey, $crt);
	 # $smime->setPublicKey([$icacert]); # if need be.

	 my $signed = $smime->sign($plain);
	 print $signed;

DESCRIPTION
       This module provides a class for handling S/MIME messages. It can sign,
       verify, encrypt and decrypt messages. It requires libcrypto
       (<http://www.openssl.org>) to work.

   METHODS
       new()
	     my $smime = Crypt::SMIME->new();

	   The constructor takes no arguments.

       setPrivateKey()
	     $smime->setPrivateKey($key, $crt);
	     $smime->setPrivateKey($key, $crt, $password);

	   Store a private key and its X.509 certificate into the instance.
	   The private key will be used for signing and decryption. Note that
	   this method takes a PEM string, not a name of a file which contains
	   a key or a certificate.

	   The private key and certificate must be encoded in PEM format. The
	   method dies if it fails to load the key.

       setPublicKey()
	     $smime->setPublicKey($crt);
	     $smime->setPublicKey([$crt1, $crt2, ...]);

	   Store one or more X.509 certificates into the instance. The public
	   keys will be used for signing, verification and encryption.

	   The certificates must be encoded in PEM format. The method dies if
	   it fails to load the certificates.

       sign()
	     $signed_mime = $smime->sign($raw_mime);

	   Sign a MIME message and return an S/MIME message. The signature is
	   always detached.

	   Any headers except "Content-*", "MIME-*" and "Subject" will be
	   moved to the top-level of the MIME message. "Subject" header will
	   be copied to both of the plain text part and the top-level for mail
	   clients which can't properly handle S/MIME messages.

       signonly()
	     $sign = $smime->signonly($prepared_mime);

	   Generate a signature from a MIME message. The resulting signature
	   is encoded in Base64. The MIME message to be passed to this method
	   should be preprocessed beforehand by the prepareSmimeMessage()
	   method. You would rarely need to call this method directly.

       prepareSmimeMessage()
	     ($prepared_mime, $outer_header)
		 = $smime->prepareSmimeMessage($source_mime);

	   Preprocess a MIME message to be signed. $prepared_mime will be a
	   string containing the processed MIME message, and $outer_header
	   will be a string that is a list of headers to be moved to the top-
	   level of MIME message. You would rarely need to call this method
	   directly.

	   The entity body of $source_mime will be directly copied to
	   $prepared_mime. Any headers of $source_mime except "Content-*",
	   "MIME-*" and "Subject" will be copied to $prepared_mime, and those
	   excluded headers will be copied to $outer_header. Note that the
	   "Subject" header will be copied to both side exceptionally.

       check()
	     $source_mime = $smime->check($signed_mime);

	   Verify a signature of S/MIME message and return a MIME message. The
	   method dies if it fails to verify it.

       encrypt()
	     $encrypted_mime = $smime->encrypt($raw_mime);

	   Encrypt a MIME message and return a S/MIME message.

	   Any headers except "Content-*", "MIME-*" and "Subject" will be
	   moved to the top-level of the MIME message. "Subject" header will
	   be copied to both of the plain text part and the top-level for mail
	   clients which can't properly handle S/MIME messages.

       decrypt()
	     $decrypted_mime = $smime->decrypt($encrypted_mime);

	   Decrypt an S/MIME and return a MIME message. This method dies if it
	   fails to decrypt it.

       isSigned()
	     $is_signed = $smime->isSigned($mime);

	   Return true if the given string is a signed S/MIME message. Note
	   that if the message was encrypted after signing, this method
	   returns false because in that case the signature is hidden in the
	   encrypted message.

       isEncrypted()
	     $is_encrypted = $smime->isEncrypted($mime);

	   Return true if the given string is an encrypted S/MIME message.
	   Note that if the message was signed with non-detached signature
	   after encryption, this method returns false because in that case
	   the encrypted message is hidden in the signature.

AUTHOR
       Copyright 2006-2007 YMIRLINK Inc. All Rights Reserved.

       This library is free software; you can redistribute it and/or modify it
       under the same terms as Perl itself

       Bug reports and comments to: tl@tripletail.jp

perl v5.14.1			  2008-10-02			      SMIME(3)
[top]

List of man pages available for Fedora

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net