Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Rust Openssl
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Public Repositories
Rust Openssl
Commits
040287db
Commit
040287db
authored
7 years ago
by
Andy Gauge
Browse files
Options
Downloads
Patches
Plain Diff
Module level documentaiton rewrite
parent
4e59fab7
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
openssl/src/cms.rs
+4
-7
4 additions, 7 deletions
openssl/src/cms.rs
with
4 additions
and
7 deletions
openssl/src/cms.rs
+
4
−
7
View file @
040287db
//! SMIME implementation using CMS
//!
//! CMS (PKCS#7) is an encyption standard. It allows signing and ecrypting data using
//! X.509 certificates. cms is a command implemented in OpenSSL to support a
//! SMIME upgrade to e-mail encryption. Changes to adding CMS to the SMIME implementation
//! would break SMIME backwards compatbility so the authors of OpenSSL added the CMS
//! keyword.
//!
//!
//! X.509 certificates. The OpenSSL implementation of CMS is used in email encryption
//! generated from a `Vec` of bytes. This `Vec` follows the smime protocol standards.
//! Data accepted by this module will be smime type `enveloped-data`.
use
ffi
;
use
foreign_types
::{
ForeignType
,
ForeignTypeRef
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment