Mercurial > 510Connectbot
annotate app/src/main/java/ch/ethz/ssh2/crypto/digest/HMAC.java @ 517:e70ec2c51ffa
Added tag stable-1.9.4-7 for changeset 3407f4741240
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 31 May 2024 13:31:52 -0600 |
parents | 7953570e5210 |
children |
rev | line source |
---|---|
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
1 /* |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
2 * Copyright (c) 2006-2011 Christian Plattner. All rights reserved. |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
3 * Please refer to the LICENSE.txt for licensing details. |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
4 */ |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
5 package ch.ethz.ssh2.crypto.digest; |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
6 |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
7 import java.security.DigestException; |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
8 |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
9 /** |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
10 * HMAC. |
307 | 11 * |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
12 * @author Christian Plattner |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
13 * @version 2.50, 03/15/10 |
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
14 */ |
307 | 15 public final class HMAC implements Digest { |
16 Digest md; | |
17 byte[] k_xor_ipad; | |
18 byte[] k_xor_opad; | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
19 |
307 | 20 byte[] tmp; |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
21 |
307 | 22 int size; |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
23 |
510
7953570e5210
update to ganymed-ssh2 tag 263 and fix hmac-sha2-512
Carl Byington <carl@five-ten-sg.com>
parents:
438
diff
changeset
|
24 public HMAC(Digest md, byte[] key, int digestsize, int blocksize) throws DigestException { |
307 | 25 this.md = md; |
510
7953570e5210
update to ganymed-ssh2 tag 263 and fix hmac-sha2-512
Carl Byington <carl@five-ten-sg.com>
parents:
438
diff
changeset
|
26 this.size = digestsize; |
307 | 27 tmp = new byte[md.getDigestLength()]; |
510
7953570e5210
update to ganymed-ssh2 tag 263 and fix hmac-sha2-512
Carl Byington <carl@five-ten-sg.com>
parents:
438
diff
changeset
|
28 k_xor_ipad = new byte[blocksize]; |
7953570e5210
update to ganymed-ssh2 tag 263 and fix hmac-sha2-512
Carl Byington <carl@five-ten-sg.com>
parents:
438
diff
changeset
|
29 k_xor_opad = new byte[blocksize]; |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
30 |
510
7953570e5210
update to ganymed-ssh2 tag 263 and fix hmac-sha2-512
Carl Byington <carl@five-ten-sg.com>
parents:
438
diff
changeset
|
31 if (key.length > blocksize) { |
307 | 32 md.reset(); |
33 md.update(key); | |
34 md.digest(tmp); | |
35 key = tmp; | |
36 } | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
37 |
307 | 38 System.arraycopy(key, 0, k_xor_ipad, 0, key.length); |
39 System.arraycopy(key, 0, k_xor_opad, 0, key.length); | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
40 |
510
7953570e5210
update to ganymed-ssh2 tag 263 and fix hmac-sha2-512
Carl Byington <carl@five-ten-sg.com>
parents:
438
diff
changeset
|
41 for (int i = 0; i < blocksize; i++) { |
307 | 42 k_xor_ipad[i] ^= 0x36; |
43 k_xor_opad[i] ^= 0x5C; | |
44 } | |
45 | |
46 md.update(k_xor_ipad); | |
47 } | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
48 |
307 | 49 public final int getDigestLength() { |
50 return size; | |
51 } | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
52 |
307 | 53 public final void update(byte b) { |
54 md.update(b); | |
55 } | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
56 |
307 | 57 public final void update(byte[] b) { |
58 md.update(b); | |
59 } | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
60 |
307 | 61 public final void update(byte[] b, int off, int len) { |
62 md.update(b, off, len); | |
63 } | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
64 |
307 | 65 public final void reset() { |
66 md.reset(); | |
67 md.update(k_xor_ipad); | |
68 } | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
69 |
307 | 70 public final void digest(byte[] out) throws DigestException { |
71 digest(out, 0); | |
72 } | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
73 |
307 | 74 public final void digest(byte[] out, int off) throws DigestException { |
75 md.digest(tmp); | |
76 md.update(k_xor_opad); | |
77 md.update(tmp); | |
78 md.digest(tmp); | |
79 System.arraycopy(tmp, 0, out, off, size); | |
80 md.update(k_xor_ipad); | |
81 } | |
273
91a31873c42a
start conversion from trilead to ganymed
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
82 } |