File tree Expand file tree Collapse file tree 5 files changed +10
-0
lines changed Expand file tree Collapse file tree 5 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 1717//! Unlike AEAD, implementations of this interface are not semantically secure, because
1818//! encrypting the same plaintex always yields the same ciphertext.
1919
20+ #![ allow( unknown_lints) ]
2021#![ deny( broken_intra_doc_links) ]
22+ #![ deny( intra_doc_link_resolution_failure) ]
2123
2224use std:: sync:: Once ;
2325
Original file line number Diff line number Diff line change 1818//! message. MAC protects data integrity as well as provides for authenticity
1919//! of the message.
2020
21+ #![ allow( unknown_lints) ]
2122#![ deny( broken_intra_doc_links) ]
23+ #![ deny( intra_doc_link_resolution_failure) ]
2224
2325use std:: sync:: Once ;
2426
Original file line number Diff line number Diff line change 1414
1515//! This crate provides implementations of the [`tink::Prf`] primitive.
1616
17+ #![ allow( unknown_lints) ]
1718#![ deny( broken_intra_doc_links) ]
19+ #![ deny( intra_doc_link_resolution_failure) ]
1820
1921mod aes_cmac_prf_key_manager;
2022pub use aes_cmac_prf_key_manager:: * ;
Original file line number Diff line number Diff line change 1414
1515//! Provides common methods needed in test code.
1616
17+ #![ allow( unknown_lints) ]
1718#![ deny( broken_intra_doc_links) ]
19+ #![ deny( intra_doc_link_resolution_failure) ]
1820
1921use prost:: Message ;
2022use std:: { convert:: TryInto , sync:: Arc } ;
Original file line number Diff line number Diff line change 1414
1515//! Core crate for Tink.
1616
17+ #![ allow( unknown_lints) ]
1718#![ deny( broken_intra_doc_links) ]
19+ #![ deny( intra_doc_link_resolution_failure) ]
1820
1921use std:: sync:: Arc ;
2022
You can’t perform that action at this time.
0 commit comments