Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java Punycode String

I want to punycode a String in order to generate a csr using bouncycastle. Here I need the byte representation of the domain name. E.g

new GeneralName(GeneralName.dNSName, new DEROctetString(bytes..)) 

My question is: How do I encode www.😉.tld correctly. I assumed that I could use IDN.toASCII(domain).getBytes(). Unfortunately this fails with:

Caused by: java.text.ParseException: An unassigned code point was found in the input ?
    at java.base/sun.net.idn.StringPrep.map(StringPrep.java:303)
    at java.base/sun.net.idn.StringPrep.prepare(StringPrep.java:426)
    at java.base/java.net.IDN.toASCIIInternal(IDN.java:272)
like image 436
user3046582 Avatar asked Sep 06 '26 11:09

user3046582


1 Answers

You just need to use the IDN.ALLOW_UNASSIGNED flag:

IDN.toASCII("www.😉.tld", IDN.ALLOW_UNASSIGNED)
like image 183
Piotr P. Karwasz Avatar answered Sep 08 '26 03:09

Piotr P. Karwasz



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!