File tree 5 files changed +6
-18
lines changed
5 files changed +6
-18
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ Collection of [Message Authentication Code][1] (MAC) algorithms written in pure
4
4
5
5
## Crates
6
6
7
- | Name | Algorithm | Crates.io | Documentation | Build Status |
8
- | --------| -----------| ---------------| ---------------| -------------- |
9
- | ` cmac ` | [ CMAC] | [ ![ crates.io] ( https://img.shields.io/crates/v/cmac.svg )] ( https://crates.io/crates/cmac ) | [ ![ Documentation] ( https://docs.rs/cmac/badge.svg )] ( https://docs.rs/cmac ) | [ ![ Build ] ( https://github.com/RustCrypto/MACs/workflows/cmac/badge.svg?branch=master&event=push )] ( https://github.com/RustCrypto/MACs/actions?query=workflow:cmac+branch:master )
10
- | ` daa ` | [ DAA] | [ ![ crates.io] ( https://img.shields.io/crates/v/daa.svg )] ( https://crates.io/crates/daa ) | [ ![ Documentation] ( https://docs.rs/daa/badge.svg )] ( https://docs.rs/daa ) | [ ![ Build ] ( https://github.com/RustCrypto/MACs/workflows/daa/badge.svg?branch=master&event=push )] ( https://github.com/RustCrypto/MACs/actions?query=workflow:daa+branch:master )
11
- | ` hmac ` | [ HMAC] | [ ![ crates.io] ( https://img.shields.io/crates/v/hmac.svg )] ( https://crates.io/crates/hmac ) | [ ![ Documentation] ( https://docs.rs/hmac/badge.svg )] ( https://docs.rs/hmac ) | [ ![ Build ] ( https://github.com/RustCrypto/MACs/workflows/hmac/badge.svg?branch=master&event=push )] ( https://github.com/RustCrypto/MACs/actions?query=workflow:hmac+branch:master )
12
- | ` pmac ` | [ PMAC] | [ ![ crates.io] ( https://img.shields.io/crates/v/pmac.svg )] ( https://crates.io/crates/pmac ) | [ ![ Documentation] ( https://docs.rs/pmac/badge.svg )] ( https://docs.rs/pmac ) | [ ![ Build ] ( https://github.com/RustCrypto/MACs/workflows/pmac/badge.svg?branch=master&event=push )] ( https://github.com/RustCrypto/MACs/actions?query=workflow:pmac+branch:master )
7
+ | Name | Algorithm | Crates.io | Documentation | MSRV |
8
+ | --------| -----------| ---------------| ---------------| ------|
9
+ | ` cmac ` | [ CMAC] | [ ![ crates.io] ( https://img.shields.io/crates/v/cmac.svg )] ( https://crates.io/crates/cmac ) | [ ![ Documentation] ( https://docs.rs/cmac/badge.svg )] ( https://docs.rs/cmac ) | 1.41 |
10
+ | ` daa ` | [ DAA] | [ ![ crates.io] ( https://img.shields.io/crates/v/daa.svg )] ( https://crates.io/crates/daa ) | [ ![ Documentation] ( https://docs.rs/daa/badge.svg )] ( https://docs.rs/daa ) | 1.41 |
11
+ | ` hmac ` | [ HMAC] | [ ![ crates.io] ( https://img.shields.io/crates/v/hmac.svg )] ( https://crates.io/crates/hmac ) | [ ![ Documentation] ( https://docs.rs/hmac/badge.svg )] ( https://docs.rs/hmac ) | 1.41 |
12
+ | ` pmac ` | [ PMAC] | [ ![ crates.io] ( https://img.shields.io/crates/v/pmac.svg )] ( https://crates.io/crates/pmac ) | [ ![ Documentation] ( https://docs.rs/pmac/badge.svg )] ( https://docs.rs/pmac ) | 1.41 |
13
13
14
14
## License
15
15
Original file line number Diff line number Diff line change 5
5
![ Apache2/MIT licensed] [ license-image ]
6
6
![ Rust Version] [ rustc-image ]
7
7
[ ![ Project Chat] [ chat-image ]] [ chat-link ]
8
- [ ![ Build Status] [ build-image ]] [ build-link ]
9
8
10
9
Pure Rust implementation of the [ Cipher-based Message Authentication Code (CMAC)] [ 1 ] .
11
10
@@ -48,8 +47,6 @@ dual licensed as above, without any additional terms or conditions.
48
47
[ rustc-image ] : https://img.shields.io/badge/rustc-1.41+-blue.svg
49
48
[ chat-image ] : https://img.shields.io/badge/zulip-join_chat-blue.svg
50
49
[ chat-link ] : https://rustcrypto.zulipchat.com/#narrow/stream/260044-MACs
51
- [ build-image ] : https://github.com/RustCrypto/MACs/workflows/cmac/badge.svg?branch=master&event=push
52
- [ build-link ] : https://github.com/RustCrypto/MACs/actions?query=workflow%3Acmac
53
50
54
51
[ // ] : # ( general links )
55
52
Original file line number Diff line number Diff line change 5
5
![ Apache2/MIT licensed] [ license-image ]
6
6
![ Rust Version] [ rustc-image ]
7
7
[ ![ Project Chat] [ chat-image ]] [ chat-link ]
8
- [ ![ Build Status] [ build-image ]] [ build-link ]
9
8
10
9
Pure Rust implementation of the [ Data Authentication Algorithm (DAA)] [ 1 ] .
11
10
@@ -48,8 +47,6 @@ dual licensed as above, without any additional terms or conditions.
48
47
[ rustc-image ] : https://img.shields.io/badge/rustc-1.41+-blue.svg
49
48
[ chat-image ] : https://img.shields.io/badge/zulip-join_chat-blue.svg
50
49
[ chat-link ] : https://rustcrypto.zulipchat.com/#narrow/stream/260044-MACs
51
- [ build-image ] : https://github.com/RustCrypto/MACs/workflows/daa/badge.svg?branch=master&event=push
52
- [ build-link ] : https://github.com/RustCrypto/MACs/actions?query=workflow%3Adaa
53
50
54
51
[ // ] : # ( general links )
55
52
Original file line number Diff line number Diff line change 5
5
![ Apache2/MIT licensed] [ license-image ]
6
6
![ Rust Version] [ rustc-image ]
7
7
[ ![ Project Chat] [ chat-image ]] [ chat-link ]
8
- [ ![ Build Status] [ build-image ]] [ build-link ]
9
8
10
9
Pure Rust implementation of the [ Hash-based Message Authentication Code (HMAC)] [ 1 ] .
11
10
@@ -48,8 +47,6 @@ dual licensed as above, without any additional terms or conditions.
48
47
[ rustc-image ] : https://img.shields.io/badge/rustc-1.41+-blue.svg
49
48
[ chat-image ] : https://img.shields.io/badge/zulip-join_chat-blue.svg
50
49
[ chat-link ] : https://rustcrypto.zulipchat.com/#narrow/stream/260044-MACs
51
- [ build-image ] : https://github.com/RustCrypto/MACs/workflows/hmac/badge.svg?branch=master&event=push
52
- [ build-link ] : https://github.com/RustCrypto/MACs/actions?query=workflow%3Ahmac
53
50
54
51
[ // ] : # ( general links )
55
52
Original file line number Diff line number Diff line change 5
5
![ Apache2/MIT licensed] [ license-image ]
6
6
![ Rust Version] [ rustc-image ]
7
7
[ ![ Project Chat] [ chat-image ]] [ chat-link ]
8
- [ ![ Build Status] [ build-image ]] [ build-link ]
9
8
10
9
Pure Rust implementation of the [ Parallel Message Authentication Code (PMAC)] [ 1 ] .
11
10
@@ -48,8 +47,6 @@ dual licensed as above, without any additional terms or conditions.
48
47
[ rustc-image ] : https://img.shields.io/badge/rustc-1.41+-blue.svg
49
48
[ chat-image ] : https://img.shields.io/badge/zulip-join_chat-blue.svg
50
49
[ chat-link ] : https://rustcrypto.zulipchat.com/#narrow/stream/260044-MACs
51
- [ build-image ] : https://github.com/RustCrypto/MACs/workflows/pmac/badge.svg?branch=master&event=push
52
- [ build-link ] : https://github.com/RustCrypto/MACs/actions?query=workflow%3Apmac
53
50
54
51
[ // ] : # ( general links )
55
52
You can’t perform that action at this time.
0 commit comments