Is Crypto.generateMac method work exactly the same as Mac and SecretKeySpec java classes
I need to create a signature in order to send a request to CyberSource. I have the following Java code, that works perfectly:
String signatureString = "Test";
final Mac sha256HMAC = Mac.getInstance("HmacSHA256");
final SecretKeySpec secretKey = new SecretKeySpec(
Base64.getDecoder().decode("LZjfTQi8uxEn5VFI3S4Ml+8UY4y3b2F0aP8c8WuiQtY="), "HmacSHA256");
sha256HMAC.init(secretKey);
sha256HMAC.update(signatureString.toString().getBytes(StandardCharsets.UTF_8));
final byte hashBytes = sha256HMAC.doFinal();
final String signatureB64 = Base64.getEncoder().encodeToString(hashBytes);
System.out.println(signatureB64.toString()); //nbXkkkM3GuPp8YEIb7JnAj4IrDy0YC7t3Pl/cJxStW0=
I tried to make the same on Apex, but it shows me different result:
String signatureString = 'Test';
System.debug(generateHmacSHA256Signature(signatureString, 'LZjfTQi8uxEn5VFI3S4Ml+8UY4y3b2F0aP8c8WuiQtY=')); //5zJnHFYz6HklMZ8vR4rf7UJfjrumiexZeYDgsuErrk=
public static String generateHmacSHA256Signature(String input, String secretKey) {
String algorithmName = 'HmacSHA256';
Blob mac = Crypto.generateMac(algorithmName, Blob.valueOf(input), Blob.valueOf(Secretkey));
String macUrl = EncodingUtil.base64Encode(mac);
return macUrl;
}
So Java returns nbXkkkM3GuPp8YEIb7JnAj4IrDy0YC7t3Pl/cJxStW0=
and Apex 5zJnHFYz6HklMZ8vR4rf7UJfjrumiexZeYDgsuErrk=
results are different.
How can I get the same result, as in Java? Any help very appriciated.
apex java crypto
add a comment |
I need to create a signature in order to send a request to CyberSource. I have the following Java code, that works perfectly:
String signatureString = "Test";
final Mac sha256HMAC = Mac.getInstance("HmacSHA256");
final SecretKeySpec secretKey = new SecretKeySpec(
Base64.getDecoder().decode("LZjfTQi8uxEn5VFI3S4Ml+8UY4y3b2F0aP8c8WuiQtY="), "HmacSHA256");
sha256HMAC.init(secretKey);
sha256HMAC.update(signatureString.toString().getBytes(StandardCharsets.UTF_8));
final byte hashBytes = sha256HMAC.doFinal();
final String signatureB64 = Base64.getEncoder().encodeToString(hashBytes);
System.out.println(signatureB64.toString()); //nbXkkkM3GuPp8YEIb7JnAj4IrDy0YC7t3Pl/cJxStW0=
I tried to make the same on Apex, but it shows me different result:
String signatureString = 'Test';
System.debug(generateHmacSHA256Signature(signatureString, 'LZjfTQi8uxEn5VFI3S4Ml+8UY4y3b2F0aP8c8WuiQtY=')); //5zJnHFYz6HklMZ8vR4rf7UJfjrumiexZeYDgsuErrk=
public static String generateHmacSHA256Signature(String input, String secretKey) {
String algorithmName = 'HmacSHA256';
Blob mac = Crypto.generateMac(algorithmName, Blob.valueOf(input), Blob.valueOf(Secretkey));
String macUrl = EncodingUtil.base64Encode(mac);
return macUrl;
}
So Java returns nbXkkkM3GuPp8YEIb7JnAj4IrDy0YC7t3Pl/cJxStW0=
and Apex 5zJnHFYz6HklMZ8vR4rf7UJfjrumiexZeYDgsuErrk=
results are different.
How can I get the same result, as in Java? Any help very appriciated.
apex java crypto
add a comment |
I need to create a signature in order to send a request to CyberSource. I have the following Java code, that works perfectly:
String signatureString = "Test";
final Mac sha256HMAC = Mac.getInstance("HmacSHA256");
final SecretKeySpec secretKey = new SecretKeySpec(
Base64.getDecoder().decode("LZjfTQi8uxEn5VFI3S4Ml+8UY4y3b2F0aP8c8WuiQtY="), "HmacSHA256");
sha256HMAC.init(secretKey);
sha256HMAC.update(signatureString.toString().getBytes(StandardCharsets.UTF_8));
final byte hashBytes = sha256HMAC.doFinal();
final String signatureB64 = Base64.getEncoder().encodeToString(hashBytes);
System.out.println(signatureB64.toString()); //nbXkkkM3GuPp8YEIb7JnAj4IrDy0YC7t3Pl/cJxStW0=
I tried to make the same on Apex, but it shows me different result:
String signatureString = 'Test';
System.debug(generateHmacSHA256Signature(signatureString, 'LZjfTQi8uxEn5VFI3S4Ml+8UY4y3b2F0aP8c8WuiQtY=')); //5zJnHFYz6HklMZ8vR4rf7UJfjrumiexZeYDgsuErrk=
public static String generateHmacSHA256Signature(String input, String secretKey) {
String algorithmName = 'HmacSHA256';
Blob mac = Crypto.generateMac(algorithmName, Blob.valueOf(input), Blob.valueOf(Secretkey));
String macUrl = EncodingUtil.base64Encode(mac);
return macUrl;
}
So Java returns nbXkkkM3GuPp8YEIb7JnAj4IrDy0YC7t3Pl/cJxStW0=
and Apex 5zJnHFYz6HklMZ8vR4rf7UJfjrumiexZeYDgsuErrk=
results are different.
How can I get the same result, as in Java? Any help very appriciated.
apex java crypto
I need to create a signature in order to send a request to CyberSource. I have the following Java code, that works perfectly:
String signatureString = "Test";
final Mac sha256HMAC = Mac.getInstance("HmacSHA256");
final SecretKeySpec secretKey = new SecretKeySpec(
Base64.getDecoder().decode("LZjfTQi8uxEn5VFI3S4Ml+8UY4y3b2F0aP8c8WuiQtY="), "HmacSHA256");
sha256HMAC.init(secretKey);
sha256HMAC.update(signatureString.toString().getBytes(StandardCharsets.UTF_8));
final byte hashBytes = sha256HMAC.doFinal();
final String signatureB64 = Base64.getEncoder().encodeToString(hashBytes);
System.out.println(signatureB64.toString()); //nbXkkkM3GuPp8YEIb7JnAj4IrDy0YC7t3Pl/cJxStW0=
I tried to make the same on Apex, but it shows me different result:
String signatureString = 'Test';
System.debug(generateHmacSHA256Signature(signatureString, 'LZjfTQi8uxEn5VFI3S4Ml+8UY4y3b2F0aP8c8WuiQtY=')); //5zJnHFYz6HklMZ8vR4rf7UJfjrumiexZeYDgsuErrk=
public static String generateHmacSHA256Signature(String input, String secretKey) {
String algorithmName = 'HmacSHA256';
Blob mac = Crypto.generateMac(algorithmName, Blob.valueOf(input), Blob.valueOf(Secretkey));
String macUrl = EncodingUtil.base64Encode(mac);
return macUrl;
}
So Java returns nbXkkkM3GuPp8YEIb7JnAj4IrDy0YC7t3Pl/cJxStW0=
and Apex 5zJnHFYz6HklMZ8vR4rf7UJfjrumiexZeYDgsuErrk=
results are different.
How can I get the same result, as in Java? Any help very appriciated.
apex java crypto
apex java crypto
edited Mar 19 at 14:38
Oleksandr Berehovskyi
asked Mar 19 at 14:23
Oleksandr BerehovskyiOleksandr Berehovskyi
10.2k32239
10.2k32239
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Your Apex code just misses the base64 decoding step on your secret key. If you change the call to generateMac()
to this:
Blob mac = Crypto.generateMac(algorithmName, Blob.valueOf(input), EncodingUtil.base64Decode(Secretkey));
You'll get back
10:39:43:003 USER_DEBUG [2]|DEBUG|nbXkkkM3GuPp8YEIb7JnAj4IrDy0YC7t3Pl/cJxStW0=
1
I wasted almost all day to try different combinations ofEncodingUtil.base64Decode
andBlob.valueOf
, but on more complicated input... What's a fresh view mean!
– Oleksandr Berehovskyi
Mar 19 at 14:44
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "459"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2fsalesforce.stackexchange.com%2fquestions%2f254457%2fis-crypto-generatemac-method-work-exactly-the-same-as-mac-and-secretkeyspec-java%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
Your Apex code just misses the base64 decoding step on your secret key. If you change the call to generateMac()
to this:
Blob mac = Crypto.generateMac(algorithmName, Blob.valueOf(input), EncodingUtil.base64Decode(Secretkey));
You'll get back
10:39:43:003 USER_DEBUG [2]|DEBUG|nbXkkkM3GuPp8YEIb7JnAj4IrDy0YC7t3Pl/cJxStW0=
1
I wasted almost all day to try different combinations ofEncodingUtil.base64Decode
andBlob.valueOf
, but on more complicated input... What's a fresh view mean!
– Oleksandr Berehovskyi
Mar 19 at 14:44
add a comment |
Your Apex code just misses the base64 decoding step on your secret key. If you change the call to generateMac()
to this:
Blob mac = Crypto.generateMac(algorithmName, Blob.valueOf(input), EncodingUtil.base64Decode(Secretkey));
You'll get back
10:39:43:003 USER_DEBUG [2]|DEBUG|nbXkkkM3GuPp8YEIb7JnAj4IrDy0YC7t3Pl/cJxStW0=
1
I wasted almost all day to try different combinations ofEncodingUtil.base64Decode
andBlob.valueOf
, but on more complicated input... What's a fresh view mean!
– Oleksandr Berehovskyi
Mar 19 at 14:44
add a comment |
Your Apex code just misses the base64 decoding step on your secret key. If you change the call to generateMac()
to this:
Blob mac = Crypto.generateMac(algorithmName, Blob.valueOf(input), EncodingUtil.base64Decode(Secretkey));
You'll get back
10:39:43:003 USER_DEBUG [2]|DEBUG|nbXkkkM3GuPp8YEIb7JnAj4IrDy0YC7t3Pl/cJxStW0=
Your Apex code just misses the base64 decoding step on your secret key. If you change the call to generateMac()
to this:
Blob mac = Crypto.generateMac(algorithmName, Blob.valueOf(input), EncodingUtil.base64Decode(Secretkey));
You'll get back
10:39:43:003 USER_DEBUG [2]|DEBUG|nbXkkkM3GuPp8YEIb7JnAj4IrDy0YC7t3Pl/cJxStW0=
answered Mar 19 at 14:40
David ReedDavid Reed
37.9k82256
37.9k82256
1
I wasted almost all day to try different combinations ofEncodingUtil.base64Decode
andBlob.valueOf
, but on more complicated input... What's a fresh view mean!
– Oleksandr Berehovskyi
Mar 19 at 14:44
add a comment |
1
I wasted almost all day to try different combinations ofEncodingUtil.base64Decode
andBlob.valueOf
, but on more complicated input... What's a fresh view mean!
– Oleksandr Berehovskyi
Mar 19 at 14:44
1
1
I wasted almost all day to try different combinations of
EncodingUtil.base64Decode
and Blob.valueOf
, but on more complicated input... What's a fresh view mean!– Oleksandr Berehovskyi
Mar 19 at 14:44
I wasted almost all day to try different combinations of
EncodingUtil.base64Decode
and Blob.valueOf
, but on more complicated input... What's a fresh view mean!– Oleksandr Berehovskyi
Mar 19 at 14:44
add a comment |
Thanks for contributing an answer to Salesforce Stack Exchange!
- 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%2fsalesforce.stackexchange.com%2fquestions%2f254457%2fis-crypto-generatemac-method-work-exactly-the-same-as-mac-and-secretkeyspec-java%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