iso_20022_dsig/lib.rs
1
2// Copyright 2023 Emergent Financial, LLC - All Rights Reserved
3//
4//
5// This software is licensed under the Emergent Financial Limited Public License Version 1.0
6// (EF-LPLv1). You may use, copy, modify, and distribute this software under the terms and
7// conditions of the EF-LPL. For more information, please refer to the full text of the license
8// at https://github.com/emergentfinancial/ef-lpl.
9//
10//
11// THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS
12// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
15// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
16// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
17//
18
19
20/// XML Signature Syntax and Processing Version 2.0
21pub mod dsig;
22
23/// Using the Elliptic Curve Signature Algorithm (ECDSA)
24/// for XML Digital Signatures. IETF RFC 4050.
25pub mod ecdsa;