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

..03-May-2022-

src/H03-May-2022-1,010697

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

.cargo_vcs_info.jsonH A D01-Nov-202074 65

CHANGELOG.mdH A D01-Nov-20201.3 KiB5637

Cargo.tomlH A D01-Nov-20201.1 KiB3834

Cargo.toml.orig-cargoH A D01-Nov-2020622 2521

LICENSE-APACHEH A D15-Oct-202010.6 KiB202169

LICENSE-MITH A D15-Oct-20201 KiB2622

README.mdH A D30-Oct-20202.1 KiB6343

README.md

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