Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
452 views
in Technique[技术] by (71.8m points)

bouncycastle - 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)
question from:https://stackoverflow.com/questions/66048061/java-punycode-string

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You just need to use the IDN.ALLOW_UNASSIGNED flag:

IDN.toASCII("www.??.tld", IDN.ALLOW_UNASSIGNED)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...