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