FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
hackerrank-java/src/MD5.java at master · anishLearnsToCode/hackerrank-java · GitHub
anishLearnsToCode
/
hackerrank-java
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
8
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
hackerrank-java
/
src
/
MD5.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
26 lines (22 loc) · 844 Bytes
Breadcrumbs
hackerrank-java
/
src
/
MD5.java
Copy path
File metadata and controls
26 lines (22 loc) · 844 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
// https://www.hackerrank.com/challenges/java-md5/problem
import
java
.
security
.
MessageDigest
;
import
java
.
security
.
NoSuchAlgorithmException
;
import
java
.
util
.
Scanner
;
public
class
MD5
{
public
static
void
main
(
String
[]
args
)
throws
NoSuchAlgorithmException
{
MessageDigest
md5
=
MessageDigest
.
getInstance
(
"MD5"
);
Scanner
scanner
=
new
Scanner
(
System
.
in
);
String
message
=
scanner
.
nextLine
();
scanner
.
close
();
byte
[]
hash
=
md5
.
digest
(
message
.
getBytes
());
String
hexadecimalHash
=
toHex
(
hash
);
System
.
out
.
println
(
hexadecimalHash
);
}
private
static
String
toHex
(
byte
[]
array
) {
StringBuilder
sb
=
new
StringBuilder
(
2
*
array
.
length
);
for
(
byte
b
:
array
) {
sb
.
append
(
String
.
format
(
"%02x"
,
b
&
0xff
));
}
return
sb
.
toString
();
}
}
Back
|
FazBrowse Home
|
New Git URL