Has anyone implemented a GWT JSNI wrapper over jsbn.js?

I am looking for code wrapping the Javascript BigInteger jsbn.js module for use in GWT. Does anyone have some to share? I could not find any on Google. Thanks.

Upvotes: 1

Views: 218

Answers (1)

johnstok
johnstok

Reputation: 98300

Your best option is probably to use the GWT-Math library: http://code.google.com/p/gwt-math/

It includes implementations of java.math.BigDecimal and java.math.BigInteger.

Upvotes: 1

Related Questions