Commit 4f8b123 1 parent 7a88a18 commit 4f8b123 Copy full SHA for 4f8b123
File tree 3 files changed +193
-424
lines changed
3 files changed +193
-424
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ impl AesBlock {
113
113
}
114
114
115
115
#[ inline( always) ]
116
- pub ( crate ) fn pre_enc_last ( self , round_key : Self ) -> Self {
116
+ fn pre_enc_last ( self , round_key : Self ) -> Self {
117
117
Self ( unsafe { vaeseq_u8 ( self . 0 , round_key. 0 ) } )
118
118
}
119
119
@@ -129,7 +129,7 @@ impl AesBlock {
129
129
}
130
130
131
131
#[ inline( always) ]
132
- pub ( crate ) fn pre_dec_last ( self , round_key : Self ) -> Self {
132
+ fn pre_dec_last ( self , round_key : Self ) -> Self {
133
133
Self ( unsafe { vaesdq_u8 ( self . 0 , round_key. 0 ) } )
134
134
}
135
135
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ impl AesBlock {
134
134
}
135
135
136
136
#[ inline( always) ]
137
- pub ( crate ) fn pre_enc_last ( self , round_key : Self ) -> Self {
137
+ fn pre_enc_last ( self , round_key : Self ) -> Self {
138
138
outer ! ( aes32esi, self , round_key)
139
139
}
140
140
@@ -156,7 +156,7 @@ impl AesBlock {
156
156
}
157
157
158
158
#[ inline( always) ]
159
- pub ( crate ) fn pre_dec_last ( self , round_key : Self ) -> Self {
159
+ fn pre_dec_last ( self , round_key : Self ) -> Self {
160
160
outer ! ( aes32dsi, self , round_key)
161
161
}
162
162
You can’t perform that action at this time.
0 commit comments