Skip to content

Commit

Permalink
- switch demo checksum to use sha256Hex
Browse files Browse the repository at this point in the history
  • Loading branch information
ritzalam committed Dec 11, 2017
1 parent 9e7e2a1 commit 45a831f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bbb-api-demo/src/main/webapp/bbb_api.jsp
Expand Up @@ -735,7 +735,7 @@ public String getMetaData( Map<String, String> metadata ) {
public static String checksum(String s) {
String checksum = "";
try {
checksum = org.apache.commons.codec.digest.DigestUtils.shaHex(s);
checksum = org.apache.commons.codec.digest.DigestUtils.sha256Hex(s);
} catch (Exception e) {
e.printStackTrace();
}
Expand Down

0 comments on commit 45a831f

Please sign in to comment.