libidn-framework
GNU Libidn is a fully documented implementation of the Stringprep, Punycode and IDNA specifications. Libidn's purpose is to encode and decode internationalized domain names. The native C, C# and Java libraries are available under the GNU Lesser General Public License version 2.1 or later.
The library contains a generic Stringprep implementation. Profiles for Nameprep, iSCSI, SASL, XMPP and Kerberos V5 are included. Punycode and ASCII Compatible Encoding (ACE) via IDNA are supported. A mechanism to define Top-Level Domain (TLD) specific validation tables, and to compare strings against those tables, is included. Default tables for some TLDs are also included.
This podspec uses a fork of libidn to fix a few minor issues related to CocoaPods integration.
Usage
To run the example project, clone the repo, and run pod install
from the Example directory first.
Installation
libidn is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "libidn"
Maintenance Notes
Upgrading libidn:
- Download latest release 1.x from https://ftp.gnu.org/gnu/libidn. The 2.x series does not include
stringprep
, which is needed by this wrapper library. - Copy over updated files that are in
/lib
folder - Comment out
#include <config.h>"
- Replace
# include <idn-int.h>
and#include "unistr.h"
with#include <stdint.h>
Authors
- Chris Ballinger - Podspec maintainer
- Simon Josefsson [email protected] - Designed and implemented libidn.
- For more see
AUTHORS
in libidn source code.
License
libidn is available under the LGPL license, but the podspec and example code in this repo is MIT. See LICENSE
for more details.