Java MessageDigest sha1 wrong result
Example input: 0200302007 (a hex value)
byte utf8 = "0200302007".getBytes("UTF-8");
MessageDigest messageDigest = MessageDigest.getInstance("SHA-1");
messageDigest.update(utf8);
return messageDigest.digest();
SHA1 expected result is: 129DB11A3DEAFDAD52BC7CBEB20FD7947F31B7B6
But the above code give results in:
ECC933969191424B4B67F3FA29C0E103471EC311
Why is that?
java cryptography
add a comment |
Example input: 0200302007 (a hex value)
byte utf8 = "0200302007".getBytes("UTF-8");
MessageDigest messageDigest = MessageDigest.getInstance("SHA-1");
messageDigest.update(utf8);
return messageDigest.digest();
SHA1 expected result is: 129DB11A3DEAFDAD52BC7CBEB20FD7947F31B7B6
But the above code give results in:
ECC933969191424B4B67F3FA29C0E103471EC311
Why is that?
java cryptography
1
Actually, the code above givesaaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d
. Where does the expected value come from?
– Henry
Nov 12 at 12:37
The expected result is AAF4C61DDCC5E8A2DABEDE0F3B482CD9AEA9434D
– Alvin
Nov 12 at 12:41
Yes, that's what I get with this code. How did you arrive at your result?
– Henry
Nov 12 at 12:44
Sorry let me edit the question, the salt should be hex
– Alvin
Nov 12 at 12:45
add a comment |
Example input: 0200302007 (a hex value)
byte utf8 = "0200302007".getBytes("UTF-8");
MessageDigest messageDigest = MessageDigest.getInstance("SHA-1");
messageDigest.update(utf8);
return messageDigest.digest();
SHA1 expected result is: 129DB11A3DEAFDAD52BC7CBEB20FD7947F31B7B6
But the above code give results in:
ECC933969191424B4B67F3FA29C0E103471EC311
Why is that?
java cryptography
Example input: 0200302007 (a hex value)
byte utf8 = "0200302007".getBytes("UTF-8");
MessageDigest messageDigest = MessageDigest.getInstance("SHA-1");
messageDigest.update(utf8);
return messageDigest.digest();
SHA1 expected result is: 129DB11A3DEAFDAD52BC7CBEB20FD7947F31B7B6
But the above code give results in:
ECC933969191424B4B67F3FA29C0E103471EC311
Why is that?
java cryptography
java cryptography
edited Nov 12 at 13:52
GhostCat
87.9k1684144
87.9k1684144
asked Nov 12 at 12:30
Alvin
2,7971348111
2,7971348111
1
Actually, the code above givesaaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d
. Where does the expected value come from?
– Henry
Nov 12 at 12:37
The expected result is AAF4C61DDCC5E8A2DABEDE0F3B482CD9AEA9434D
– Alvin
Nov 12 at 12:41
Yes, that's what I get with this code. How did you arrive at your result?
– Henry
Nov 12 at 12:44
Sorry let me edit the question, the salt should be hex
– Alvin
Nov 12 at 12:45
add a comment |
1
Actually, the code above givesaaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d
. Where does the expected value come from?
– Henry
Nov 12 at 12:37
The expected result is AAF4C61DDCC5E8A2DABEDE0F3B482CD9AEA9434D
– Alvin
Nov 12 at 12:41
Yes, that's what I get with this code. How did you arrive at your result?
– Henry
Nov 12 at 12:44
Sorry let me edit the question, the salt should be hex
– Alvin
Nov 12 at 12:45
1
1
Actually, the code above gives
aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d
. Where does the expected value come from?– Henry
Nov 12 at 12:37
Actually, the code above gives
aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d
. Where does the expected value come from?– Henry
Nov 12 at 12:37
The expected result is AAF4C61DDCC5E8A2DABEDE0F3B482CD9AEA9434D
– Alvin
Nov 12 at 12:41
The expected result is AAF4C61DDCC5E8A2DABEDE0F3B482CD9AEA9434D
– Alvin
Nov 12 at 12:41
Yes, that's what I get with this code. How did you arrive at your result?
– Henry
Nov 12 at 12:44
Yes, that's what I get with this code. How did you arrive at your result?
– Henry
Nov 12 at 12:44
Sorry let me edit the question, the salt should be hex
– Alvin
Nov 12 at 12:45
Sorry let me edit the question, the salt should be hex
– Alvin
Nov 12 at 12:45
add a comment |
1 Answer
1
active
oldest
votes
You need to specify the input value correctly:
byte utf8 = {0x2, 0x0, 0x30, 0x20, 0x7};
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53262243%2fjava-messagedigest-sha1-wrong-result%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You need to specify the input value correctly:
byte utf8 = {0x2, 0x0, 0x30, 0x20, 0x7};
add a comment |
You need to specify the input value correctly:
byte utf8 = {0x2, 0x0, 0x30, 0x20, 0x7};
add a comment |
You need to specify the input value correctly:
byte utf8 = {0x2, 0x0, 0x30, 0x20, 0x7};
You need to specify the input value correctly:
byte utf8 = {0x2, 0x0, 0x30, 0x20, 0x7};
answered Nov 12 at 12:49
Henry
33.1k54259
33.1k54259
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53262243%2fjava-messagedigest-sha1-wrong-result%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Actually, the code above gives
aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d
. Where does the expected value come from?– Henry
Nov 12 at 12:37
The expected result is AAF4C61DDCC5E8A2DABEDE0F3B482CD9AEA9434D
– Alvin
Nov 12 at 12:41
Yes, that's what I get with this code. How did you arrive at your result?
– Henry
Nov 12 at 12:44
Sorry let me edit the question, the salt should be hex
– Alvin
Nov 12 at 12:45