shadedecho
Programmer
I'm looking to get a javascript implementation of IDNA conversion (RFC 3490), which involves:
* StringPrep/NamePrep (RFC 3454/3491) unicode string preparation
* Punycode (RFC 3492) translation between unicode and ascii representations
LibIDN ( has C, java, and C# implementations of the relevant functions ("ToAscii", "ToUnicode", and other dependency functions). The biggest problem though is that this is GPL, and I need something that is at least LGPL or preferably more open/free -- GPL will not work.
---------
Verisign's SDK (with C and Java implementations) is BSD licensed and is possibly more promising on this front:
And, they also list here some other language implementations of note:
---------
Ultimately, I'm trying to get an actionscript implementation working, but I figured if I could get it into javascript, I could certainly figure out the conversion to actionscript as the languages are so nearly identical.
Does anyone know how I could go about getting this done? (BTW, this is non-comercial, for a free, open-source project I run).
* StringPrep/NamePrep (RFC 3454/3491) unicode string preparation
* Punycode (RFC 3492) translation between unicode and ascii representations
LibIDN ( has C, java, and C# implementations of the relevant functions ("ToAscii", "ToUnicode", and other dependency functions). The biggest problem though is that this is GPL, and I need something that is at least LGPL or preferably more open/free -- GPL will not work.
---------
Verisign's SDK (with C and Java implementations) is BSD licensed and is possibly more promising on this front:
And, they also list here some other language implementations of note:
---------
Ultimately, I'm trying to get an actionscript implementation working, but I figured if I could get it into javascript, I could certainly figure out the conversion to actionscript as the languages are so nearly identical.
Does anyone know how I could go about getting this done? (BTW, this is non-comercial, for a free, open-source project I run).