2012-12-11 01:32:48 +00:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-05-21 00:07:24 +00:00
|
|
|
extern mod extra;
|
2012-07-26 21:04:03 +00:00
|
|
|
|
2012-07-31 17:27:51 +00:00
|
|
|
trait siphash {
|
2013-03-13 02:32:14 +00:00
|
|
|
fn result(&self) -> u64;
|
|
|
|
fn reset(&self);
|
2012-07-26 21:04:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn siphash(k0 : u64, k1 : u64) -> siphash {
|
2013-03-07 03:09:17 +00:00
|
|
|
struct SipState {
|
|
|
|
v0: u64,
|
|
|
|
v1: u64,
|
|
|
|
}
|
2012-07-26 21:04:03 +00:00
|
|
|
|
2013-03-14 00:57:30 +00:00
|
|
|
fn mk_result(st : SipState) -> u64 {
|
2012-07-26 21:04:03 +00:00
|
|
|
|
2013-06-05 04:43:41 +00:00
|
|
|
let v0 = st.v0;
|
|
|
|
let v1 = st.v1;
|
2012-08-02 00:30:05 +00:00
|
|
|
return v0 ^ v1;
|
2012-07-26 21:04:03 +00:00
|
|
|
}
|
|
|
|
|
2013-03-07 03:09:17 +00:00
|
|
|
impl siphash for SipState {
|
2013-03-13 02:32:14 +00:00
|
|
|
fn reset(&self) {
|
2012-07-26 21:04:03 +00:00
|
|
|
self.v0 = k0 ^ 0x736f6d6570736575; //~ ERROR attempted dynamic environment-capture
|
2013-05-10 16:52:56 +00:00
|
|
|
//~^ ERROR unresolved name `k0`.
|
2012-07-26 21:04:03 +00:00
|
|
|
self.v1 = k1 ^ 0x646f72616e646f6d; //~ ERROR attempted dynamic environment-capture
|
2013-05-10 16:52:56 +00:00
|
|
|
//~^ ERROR unresolved name `k1`.
|
2012-07-26 21:04:03 +00:00
|
|
|
}
|
2013-03-13 02:32:14 +00:00
|
|
|
fn result(&self) -> u64 { return mk_result(self); }
|
2012-07-26 21:04:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|