curiousity
curiousity

Reputation: 4741

Crypto key generation

What is the easiest way to generate encoded hex 32 string from input string and some number(For example (for start) I could use not a number but current date)? In c# I have used PasswordDeriveBytes for such kind of issues. Is there some analog in java?

Upvotes: 0

Views: 50

Answers (1)

Drejc
Drejc

Reputation: 14286

Look at:

javax.crypto.Cipher

some examples

Upvotes: 1

Related Questions