@@ -18,7 +18,7 @@ use ptr;
18
18
/// An implementation of SipHash 1-3.
19
19
///
20
20
/// See: https://131002.net/siphash/
21
- #[ unstable( feature = "sip_hash_13" , issue = "29754 " ) ]
21
+ #[ unstable( feature = "sip_hash_13" , issue = "34767 " ) ]
22
22
#[ derive( Debug , Clone , Default ) ]
23
23
pub struct SipHasher13 {
24
24
hasher : Hasher < Sip13Rounds > ,
@@ -27,7 +27,7 @@ pub struct SipHasher13 {
27
27
/// An implementation of SipHash 2-4.
28
28
///
29
29
/// See: https://131002.net/siphash/
30
- #[ unstable( feature = "sip_hash_13" , issue = "29754 " ) ]
30
+ #[ unstable( feature = "sip_hash_13" , issue = "34767 " ) ]
31
31
#[ derive( Debug , Clone , Default ) ]
32
32
pub struct SipHasher24 {
33
33
hasher : Hasher < Sip24Rounds > ,
@@ -154,14 +154,14 @@ impl SipHasher {
154
154
impl SipHasher13 {
155
155
/// Creates a new `SipHasher13` with the two initial keys set to 0.
156
156
#[ inline]
157
- #[ unstable( feature = "sip_hash_13" , issue = "29754 " ) ]
157
+ #[ unstable( feature = "sip_hash_13" , issue = "34767 " ) ]
158
158
pub fn new ( ) -> SipHasher13 {
159
159
SipHasher13 :: new_with_keys ( 0 , 0 )
160
160
}
161
161
162
162
/// Creates a `SipHasher13` that is keyed off the provided keys.
163
163
#[ inline]
164
- #[ unstable( feature = "sip_hash_13" , issue = "29754 " ) ]
164
+ #[ unstable( feature = "sip_hash_13" , issue = "34767 " ) ]
165
165
pub fn new_with_keys ( key0 : u64 , key1 : u64 ) -> SipHasher13 {
166
166
SipHasher13 {
167
167
hasher : Hasher :: new_with_keys ( key0, key1)
@@ -172,14 +172,14 @@ impl SipHasher13 {
172
172
impl SipHasher24 {
173
173
/// Creates a new `SipHasher24` with the two initial keys set to 0.
174
174
#[ inline]
175
- #[ unstable( feature = "sip_hash_13" , issue = "29754 " ) ]
175
+ #[ unstable( feature = "sip_hash_13" , issue = "34767 " ) ]
176
176
pub fn new ( ) -> SipHasher24 {
177
177
SipHasher24 :: new_with_keys ( 0 , 0 )
178
178
}
179
179
180
180
/// Creates a `SipHasher24` that is keyed off the provided keys.
181
181
#[ inline]
182
- #[ unstable( feature = "sip_hash_13" , issue = "29754 " ) ]
182
+ #[ unstable( feature = "sip_hash_13" , issue = "34767 " ) ]
183
183
pub fn new_with_keys ( key0 : u64 , key1 : u64 ) -> SipHasher24 {
184
184
SipHasher24 {
185
185
hasher : Hasher :: new_with_keys ( key0, key1)
@@ -232,7 +232,7 @@ impl super::Hasher for SipHasher {
232
232
}
233
233
}
234
234
235
- #[ unstable( feature = "sip_hash_13" , issue = "29754 " ) ]
235
+ #[ unstable( feature = "sip_hash_13" , issue = "34767 " ) ]
236
236
impl super :: Hasher for SipHasher13 {
237
237
#[ inline]
238
238
fn write ( & mut self , msg : & [ u8 ] ) {
@@ -245,7 +245,7 @@ impl super::Hasher for SipHasher13 {
245
245
}
246
246
}
247
247
248
- #[ unstable( feature = "sip_hash_13" , issue = "29754 " ) ]
248
+ #[ unstable( feature = "sip_hash_13" , issue = "34767 " ) ]
249
249
impl super :: Hasher for SipHasher24 {
250
250
#[ inline]
251
251
fn write ( & mut self , msg : & [ u8 ] ) {
0 commit comments