|
NAMEUnicode::Stringprep - Preparation of Internationalized Strings (RFC 3454)SYNOPSISuse Unicode::Stringprep; use Unicode::Stringprep::Mapping; use Unicode::Stringprep::Prohibited; my $prepper = Unicode::Stringprep->new( 3.2, [ { 32 => '<SPACE>'}, ], 'KC', [ @Unicode::Stringprep::Prohibited::C12, @Unicode::Stringprep::Prohibited::C22, @Unicode::Stringprep::Prohibited::C3, @Unicode::Stringprep::Prohibited::C4, @Unicode::Stringprep::Prohibited::C5, @Unicode::Stringprep::Prohibited::C6, @Unicode::Stringprep::Prohibited::C7, @Unicode::Stringprep::Prohibited::C8, @Unicode::Stringprep::Prohibited::C9 ], 1, 0 ); $output = $prepper->($input) DESCRIPTIONThis module implements the stringprep framework for preparing Unicode text strings in order to increase the likelihood that string input and string comparison work in ways that make sense for typical users throughout the world. The stringprep protocol is useful for protocol identifier values, company and personal names, internationalized domain names, and other text strings.The stringprep framework does not specify how protocols should prepare text strings. Protocols must create profiles of stringprep in order to fully specify the processing options. FUNCTIONSThis module provides a single function, "new", that creates a perl function implementing a stringprep profile.This module exports nothing.
The function returned can be called with a single parameter, the string to be prepared, and returns the prepared string. It will die if the input string cannot be successfully prepared because it would contain invalid output (so use "eval" if necessary). For performance reasons, it is strongly recommended to call the "new" function as few times as possible, i. e. exactly once per stringprep profile. It might also be better not to use this module directly but to use (or write) a module implementing a profile, such as Authen::SASL::SASLprep. IMPLEMENTING PROFILESYou can easily implement a stringprep profile without subclassing:package ACME::ExamplePrep; use Unicode::Stringprep; use Unicode::Stringprep::Mapping; use Unicode::Stringprep::Prohibited; *exampleprep = Unicode::Stringprep->new( 3.2, [ \@Unicode::Stringprep::Mapping::B1, ], '', [ \@Unicode::Stringprep::Prohibited::C12, \@Unicode::Stringprep::Prohibited::C22, ], 1, ); This binds "ACME::ExamplePrep::exampleprep" to the function created by "Unicode::Stringprep->new". Usually, it is not necessary to subclass this module. Sublassing this module is not recommended. DATA TABLESThe following modules contain the data tables from RFC 3454. These modules are automatically loaded when loading "Unicode::Stringprep".
CAVEATSIn Unicode 3.2 to 4.0.1, the specification of UAX #15: Unicode Normalization Forms for forms NFC and NFKC is not logically self-consistent. This has been fixed in Corrigendum #5 (<http://unicode.org/versions/corrigendum5.html>).Unfortunately, this yields two ways to implement NFC and NFKC in Unicode 3.2, on which the Stringprep standard is based: one based on a literal interpretation of the original specification and one based on the corrected specification. The output of these implementations differs for a small class of strings, all of which can't appear in meaningful text. See UAX #15, section 19 <http://unicode.org/reports/tr15/#Stability_Prior_to_Unicode41> for details. This module will check for these strings and, if normalization is done, prohibit them in output as it is not possible to interoperate under these circumstandes. Please note that due to this, the normalization step may cause the preparation to fail. That is, the preparation function may die even if there are no prohibited characters and no checks for bidi sequences and unassigned characters, which may be surprising. AUTHORClaus Färber <CFAERBER@cpan.org>LICENSECopyright 2007-2009 Claus Färber.This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSOUnicode::Normalize, RFC 3454 (<http://www.ietf.org/rfc/rfc3454.txt>)
Visit the GSP FreeBSD Man Page Interface. |