From 64106c4d3d4ddba8c7bc2af75376e6d3d3d75601 Mon Sep 17 00:00:00 2001
From:
Date: Mon, 29 Jun 2015 20:16:15 +0000
Subject: Update documentation
---
src/openssl/crypto/hash.rs.html | 773 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 773 insertions(+)
create mode 100644 src/openssl/crypto/hash.rs.html
(limited to 'src/openssl/crypto/hash.rs.html')
diff --git a/src/openssl/crypto/hash.rs.html b/src/openssl/crypto/hash.rs.html
new file mode 100644
index 0000000..3acc27b
--- /dev/null
+++ b/src/openssl/crypto/hash.rs.html
@@ -0,0 +1,773 @@
+
+
+
+ 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+ 10
+ 11
+ 12
+ 13
+ 14
+ 15
+ 16
+ 17
+ 18
+ 19
+ 20
+ 21
+ 22
+ 23
+ 24
+ 25
+ 26
+ 27
+ 28
+ 29
+ 30
+ 31
+ 32
+ 33
+ 34
+ 35
+ 36
+ 37
+ 38
+ 39
+ 40
+ 41
+ 42
+ 43
+ 44
+ 45
+ 46
+ 47
+ 48
+ 49
+ 50
+ 51
+ 52
+ 53
+ 54
+ 55
+ 56
+ 57
+ 58
+ 59
+ 60
+ 61
+ 62
+ 63
+ 64
+ 65
+ 66
+ 67
+ 68
+ 69
+ 70
+ 71
+ 72
+ 73
+ 74
+ 75
+ 76
+ 77
+ 78
+ 79
+ 80
+ 81
+ 82
+ 83
+ 84
+ 85
+ 86
+ 87
+ 88
+ 89
+ 90
+ 91
+ 92
+ 93
+ 94
+ 95
+ 96
+ 97
+ 98
+ 99
+100
+101
+102
+103
+104
+105
+106
+107
+108
+109
+110
+111
+112
+113
+114
+115
+116
+117
+118
+119
+120
+121
+122
+123
+124
+125
+126
+127
+128
+129
+130
+131
+132
+133
+134
+135
+136
+137
+138
+139
+140
+141
+142
+143
+144
+145
+146
+147
+148
+149
+150
+151
+152
+153
+154
+155
+156
+157
+158
+159
+160
+161
+162
+163
+164
+165
+166
+167
+168
+169
+170
+171
+172
+173
+174
+175
+176
+177
+178
+179
+180
+181
+182
+183
+184
+185
+186
+187
+188
+189
+190
+191
+192
+193
+194
+195
+196
+197
+198
+199
+200
+201
+202
+203
+204
+205
+206
+207
+208
+209
+210
+211
+212
+213
+214
+215
+216
+217
+218
+219
+220
+221
+222
+223
+224
+225
+226
+227
+228
+229
+230
+231
+232
+233
+234
+235
+236
+237
+238
+239
+240
+241
+242
+243
+244
+245
+246
+247
+248
+249
+250
+251
+252
+253
+254
+255
+256
+257
+258
+259
+260
+261
+262
+263
+264
+265
+266
+267
+268
+269
+270
+271
+272
+273
+274
+275
+276
+277
+278
+279
+280
+281
+282
+283
+284
+285
+286
+287
+288
+289
+290
+291
+292
+293
+294
+295
+296
+297
+298
+299
+300
+301
+302
+303
+304
+305
+306
+307
+308
+309
+310
+311
+312
+313
+314
+315
+316
+317
+318
+319
+320
+321
+322
+323
+324
+325
+326
+327
+328
+329
+330
+331
+332
+333
+334
+335
+336
+337
+338
+
+use libc::c_uint;
+use std::iter::repeat;
+use std::io::prelude::*;
+use std::io;
+
+use ffi;
+
+
+#[derive(Copy, Clone)]
+pub enum Type {
+ MD5,
+ SHA1,
+ SHA224,
+ SHA256,
+ SHA384,
+ SHA512,
+ RIPEMD160
+}
+
+impl Type {
+
+ #[inline]
+ pub fn md_len(&self) -> usize {
+ use self::Type::*;
+ match *self {
+ MD5 => 16,
+ SHA1 => 20,
+ SHA224 => 28,
+ SHA256 => 32,
+ SHA384 => 48,
+ SHA512 => 64,
+ RIPEMD160 => 20,
+ }
+ }
+
+
+ #[inline]
+ pub fn evp_md(&self) -> *const ffi::EVP_MD {
+ unsafe {
+ use self::Type::*;
+ match *self {
+ MD5 => ffi::EVP_md5(),
+ SHA1 => ffi::EVP_sha1(),
+ SHA224 => ffi::EVP_sha224(),
+ SHA256 => ffi::EVP_sha256(),
+ SHA384 => ffi::EVP_sha384(),
+ SHA512 => ffi::EVP_sha512(),
+ RIPEMD160 => ffi::EVP_ripemd160(),
+ }
+ }
+ }
+}
+
+#[derive(PartialEq, Copy, Clone)]
+enum State {
+ Reset,
+ Updated,
+ Finalized,
+}
+
+use self::State::*;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+pub struct Hasher {
+ ctx: *mut ffi::EVP_MD_CTX,
+ md: *const ffi::EVP_MD,
+ type_: Type,
+ state: State,
+}
+
+impl Hasher {
+
+ pub fn new(ty: Type) -> Hasher {
+ ffi::init();
+
+ let ctx = unsafe {
+ let r = ffi::EVP_MD_CTX_create();
+ assert!(!r.is_null());
+ r
+ };
+ let md = ty.evp_md();
+
+ let mut h = Hasher { ctx: ctx, md: md, type_: ty, state: Finalized };
+ h.init();
+ h
+ }
+
+ #[inline]
+ fn init(&mut self) {
+ match self.state {
+ Reset => return,
+ Updated => { self.finalize(); },
+ Finalized => (),
+ }
+ unsafe {
+ let r = ffi::EVP_DigestInit_ex(self.ctx, self.md, 0 as *const _);
+ assert_eq!(r, 1);
+ }
+ self.state = Reset;
+ }
+
+ #[inline]
+ fn update(&mut self, data: &[u8]) {
+ if self.state == Finalized {
+ self.init();
+ }
+ unsafe {
+ let r = ffi::EVP_DigestUpdate(self.ctx, data.as_ptr(),
+ data.len() as c_uint);
+ assert_eq!(r, 1);
+ }
+ self.state = Updated;
+ }
+
+ #[inline]
+ fn finalize(&mut self) -> Vec<u8> {
+ if self.state == Finalized {
+ self.init();
+ }
+ let md_len = self.type_.md_len();
+ let mut res: Vec<u8> = repeat(0).take(md_len).collect();
+ unsafe {
+ let mut len = 0;
+ let r = ffi::EVP_DigestFinal_ex(self.ctx, res.as_mut_ptr(), &mut len);
+ self.state = Finalized;
+ assert_eq!(len as usize, md_len);
+ assert_eq!(r, 1);
+ }
+ res
+ }
+
+
+
+ #[inline]
+ pub fn finish(&mut self) -> Vec<u8> {
+ self.finalize()
+ }
+}
+
+impl Write for Hasher {
+ #[inline]
+ fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
+ self.update(buf);
+ Ok(buf.len())
+ }
+
+ fn flush(&mut self) -> io::Result<()> {
+ Ok(())
+ }
+}
+
+impl Clone for Hasher {
+ fn clone(&self) -> Hasher {
+ let ctx = unsafe {
+ let ctx = ffi::EVP_MD_CTX_create();
+ assert!(!ctx.is_null());
+ let r = ffi::EVP_MD_CTX_copy_ex(ctx, self.ctx);
+ assert_eq!(r, 1);
+ ctx
+ };
+ Hasher { ctx: ctx, md: self.md, type_: self.type_, state: self.state }
+ }
+}
+
+impl Drop for Hasher {
+ fn drop(&mut self) {
+ unsafe {
+ if self.state != Finalized {
+ let mut buf: Vec<u8> = repeat(0).take(self.type_.md_len()).collect();
+ let mut len = 0;
+ ffi::EVP_DigestFinal_ex(self.ctx, buf.as_mut_ptr(), &mut len);
+ }
+ ffi::EVP_MD_CTX_destroy(self.ctx);
+ }
+ }
+}
+
+
+pub fn hash(t: Type, data: &[u8]) -> Vec<u8> {
+ let mut h = Hasher::new(t);
+ let _ = h.write_all(data);
+ h.finish()
+}
+
+#[cfg(test)]
+mod tests {
+ use serialize::hex::{FromHex, ToHex};
+ use super::{hash, Hasher, Type};
+ use std::io::prelude::*;
+
+ fn hash_test(hashtype: Type, hashtest: &(&str, &str)) {
+ let res = hash(hashtype, &*hashtest.0.from_hex().unwrap());
+ assert_eq!(res.to_hex(), hashtest.1);
+ }
+
+ fn hash_recycle_test(h: &mut Hasher, hashtest: &(&str, &str)) {
+ let _ = h.write_all(&*hashtest.0.from_hex().unwrap());
+ let res = h.finish();
+ assert_eq!(res.to_hex(), hashtest.1);
+ }
+
+
+ #[allow(non_upper_case_globals)]
+ const md5_tests: [(&'static str, &'static str); 13] = [
+ ("", "d41d8cd98f00b204e9800998ecf8427e"),
+ ("7F", "83acb6e67e50e31db6ed341dd2de1595"),
+ ("EC9C", "0b07f0d4ca797d8ac58874f887cb0b68"),
+ ("FEE57A", "e0d583171eb06d56198fc0ef22173907"),
+ ("42F497E0", "7c430f178aefdf1487fee7144e9641e2"),
+ ("C53B777F1C", "75ef141d64cb37ec423da2d9d440c925"),
+ ("89D5B576327B", "ebbaf15eb0ed784c6faa9dc32831bf33"),
+ ("5D4CCE781EB190", "ce175c4b08172019f05e6b5279889f2c"),
+ ("81901FE94932D7B9", "cd4d2f62b8cdb3a0cf968a735a239281"),
+ ("C9FFDEE7788EFB4EC9", "e0841a231ab698db30c6c0f3f246c014"),
+ ("66AC4B7EBA95E53DC10B", "a3b3cea71910d9af56742aa0bb2fe329"),
+ ("A510CD18F7A56852EB0319", "577e216843dd11573574d3fb209b97d8"),
+ ("AAED18DBE8938C19ED734A8D", "6f80fb775f27e0a4ce5c2f42fc72c5f1")
+ ];
+
+ #[test]
+ fn test_md5() {
+ for test in md5_tests.iter() {
+ hash_test(Type::MD5, test);
+ }
+ }
+
+ #[test]
+ fn test_md5_recycle() {
+ let mut h = Hasher::new(Type::MD5);
+ for test in md5_tests.iter() {
+ hash_recycle_test(&mut h, test);
+ }
+ }
+
+ #[test]
+ fn test_finish_twice() {
+ let mut h = Hasher::new(Type::MD5);
+ let _ = h.write_all(&*md5_tests[6].0.from_hex().unwrap());
+ let _ = h.finish();
+ let res = h.finish();
+ let null = hash(Type::MD5, &[]);
+ assert_eq!(res, null);
+ }
+
+ #[test]
+ fn test_clone() {
+ let i = 7;
+ let inp = md5_tests[i].0.from_hex().unwrap();
+ assert!(inp.len() > 2);
+ let p = inp.len() / 2;
+ let h0 = Hasher::new(Type::MD5);
+
+ println!("Clone a new hasher");
+ let mut h1 = h0.clone();
+ let _ = h1.write_all(&inp[..p]);
+ {
+ println!("Clone an updated hasher");
+ let mut h2 = h1.clone();
+ let _ = h2.write_all(&inp[p..]);
+ let res = h2.finish();
+ assert_eq!(res.to_hex(), md5_tests[i].1);
+ }
+ let _ = h1.write_all(&inp[p..]);
+ let res = h1.finish();
+ assert_eq!(res.to_hex(), md5_tests[i].1);
+
+ println!("Clone a finished hasher");
+ let mut h3 = h1.clone();
+ let _ = h3.write_all(&*md5_tests[i + 1].0.from_hex().unwrap());
+ let res = h3.finish();
+ assert_eq!(res.to_hex(), md5_tests[i + 1].1);
+ }
+
+ #[test]
+ fn test_sha1() {
+ let tests = [
+ ("616263", "a9993e364706816aba3e25717850c26c9cd0d89d"),
+ ];
+
+ for test in tests.iter() {
+ hash_test(Type::SHA1, test);
+ }
+ }
+
+ #[test]
+ fn test_sha256() {
+ let tests = [
+ ("616263", "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad")
+ ];
+
+ for test in tests.iter() {
+ hash_test(Type::SHA256, test);
+ }
+ }
+
+ #[test]
+ fn test_ripemd160() {
+ let tests = [
+ ("616263", "8eb208f7e05d987a9b044a8e98c6b087f15a0bfc")
+ ];
+
+ for test in tests.iter() {
+ hash_test(Type::RIPEMD160, test);
+ }
+ }
+}
+
+
+