• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/H25-Oct-2021-779315

t/H03-May-2022-952795

ChangesH A D25-Oct-20215.6 KiB143113

MANIFESTH A D25-Oct-2021448 2423

MANIFEST.SKIPH A D21-Feb-2018204 1817

META.jsonH A D25-Oct-20211.1 KiB4847

META.ymlH A D25-Oct-2021709 2928

Makefile.PLH A D23-Jan-20185.1 KiB146124

READMEH A D23-Jan-20181.8 KiB6043

SMIME.mlpodH A D21-Feb-201813.2 KiB412312

SMIME.plH A D25-Oct-20213.9 KiB185141

SMIME.podH A D21-Feb-20187.4 KiB305167

SMIME.xsH A D25-Oct-202129.9 KiB1,108889

typemapH A D05-Nov-2012564 2318

README

1NAME
2    Crypt::SMIME - S/MIME message signing, verification, encryption
3                   and decryption
4
5DESCRIPTION
6    This module provides a class for handling S/MIME messages. It can
7    sign, verify, encrypt and decrypt messages. It requires libcrypto
8    (http://www.openssl.org).
9
10INSTALLATION
11    To install this module, run the following commands:
12
13        perl Makefile.PL
14        make
15        make test
16        make install
17
18    HINTS FOR WINDOWS USERS
19        Openssl has to be installed first - and openssl/bin must be in
20        PATH for the module tests.
21
22        * The ENV for LIBCRYPTO_CFLAGS should point to the openssl
23          include folder.
24        * The ENV for LIBCRYPTO_LIBS should point to the
25          openssl libraries.
26
27        Example:
28
29            set PATH=C:\openssl\bin;%PATH%
30            set LIBCRYPTO_CFLAGS=-IC:/openssl/include
31            set LIBCRYPTO_LIBS="c:/openssl/lib/libeay32.lib" "c:/openssl/lib/ssleay32.lib"
32
33        Strawberry perl always provides a full *nix compatible
34        libcrypro environment. There are no settings or additionally
35        installations required for this perl distribution.
36
37SUPPORT AND DOCUMENTATION
38    After installing, you can find documentation for this module with
39    the perldoc command.
40
41      perldoc Crypt::SMIME
42
43    You can also look for information at:
44
45      CPAN
46          http://search.cpan.org/dist/Crypt-SMIME/
47
48BUGS
49    Please post any bug reports and feature requests to
50    rt.cpan.org. Failure to do so will result in a higher probability
51    of neglection:
52
53    https://rt.cpan.org/Public/Dist/Display.html?Name=Crypt-SMIME
54
55COPYRIGHT AND LICENCE
56    Copyright (C) 2006-2014 YMIRLINK Inc.
57
58    This library is free software; you can redistribute it and/or
59    modify it under the same terms as Perl itself.
60