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

..03-May-2022-

src/H03-May-2022-278192

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

CHANGELOG.mdH A D29-Nov-19732.3 KiB9362

Cargo.tomlH A D01-Jan-19701.2 KiB4640

Cargo.toml.orig-cargoH A D29-Nov-1973774 2723

LICENSE-APACHEH A D29-Nov-197310.6 KiB202169

LICENSE-MITH A D29-Nov-19731 KiB2622

README.mdH A D29-Nov-19732 KiB6040

README.md

1# RustCrypto: Message Authentication Code Traits
2
3[![crate][crate-image]][crate-link]
4[![Docs][docs-image]][docs-link]
5![Apache2/MIT licensed][license-image]
6![Rust Version][rustc-image]
7[![Project Chat][chat-image]][chat-link]
8[![Build Status][build-image]][build-link]
9
10Traits for [Message Authentication Code] (MAC) algorithms.
11
12See [RustCrypto/MACs] for implementations which use this trait.
13
14[Documentation][docs-link]
15
16## Minimum Supported Rust Version
17
18Rust **1.41** or higher.
19
20Minimum supported Rust version can be changed in the future, but it will be
21done with a minor version bump.
22
23## SemVer Policy
24
25- All on-by-default features of this library are covered by SemVer
26- MSRV is considered exempt from SemVer as noted above
27
28## License
29
30Licensed under either of:
31
32 * [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)
33 * [MIT license](http://opensource.org/licenses/MIT)
34
35at your option.
36
37### Contribution
38
39Unless you explicitly state otherwise, any contribution intentionally submitted
40for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
41dual licensed as above, without any additional terms or conditions.
42
43[//]: # (badges)
44
45[crate-image]: https://img.shields.io/crates/v/crypto-mac.svg
46[crate-link]: https://crates.io/crates/crypto-mac
47[docs-image]: https://docs.rs/crypto-mac/badge.svg
48[docs-link]: https://docs.rs/crypto-mac/
49[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
50[rustc-image]: https://img.shields.io/badge/rustc-1.41+-blue.svg
51[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
52[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260044-MACs
53[build-image]: https://github.com/RustCrypto/traits/workflows/crypto-mac/badge.svg?branch=master&event=push
54[build-link]: https://github.com/RustCrypto/traits/actions?query=workflow%3Acrypto-mac
55
56[//]: # (general links)
57
58[Message Authentication Code]: https://en.wikipedia.org/wiki/Message_authentication_code
59[RustCrypto/MACs]: https://github.com/RustCrypto/MACs
60