ayush
ayush

Reputation: 14578

integrating java code with a browser

This question is a general one.

I have java code for hmac(sha1 and md5) coding and a client server key exchange protocol(both codes in java).

Now i want to embed/integrate this with a browser to implement password hashing. Any ideas how i might proceed about it?

Upvotes: 0

Views: 53

Answers (1)

Bozho
Bozho

Reputation: 597382

Java applets run in the browser.

But note that applets are a bit tedious to run, and you can have md5/sha1 with javascript.

Upvotes: 2

Related Questions