| Package | Description |
|---|---|
| org.owasp.esapi.codecs |
This package contains codecs for application layer encoding/escaping schemes that can be used for
both canonicalization and output encoding.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Character |
XMLEntityCodec.decodeCharacter(PushbackString input)
Returns the decoded version of the next character from the input string and advances the
current character in the PushbackString.
|
java.lang.Character |
WindowsCodec.decodeCharacter(PushbackString input)
Returns the decoded version of the next character from the input string and advances the
current character in the PushbackString.
|
java.lang.Character |
VBScriptCodec.decodeCharacter(PushbackString input)
Returns the decoded version of the character starting at index, or
null if no decoding is possible.
|
java.lang.Character |
UnixCodec.decodeCharacter(PushbackString input)
Returns the decoded version of the next character from the input string and advances the
current character in the PushbackString.
|
java.lang.Character |
PercentCodec.decodeCharacter(PushbackString input)
Returns the decoded version of the next character from the input string and advances the
current character in the PushbackString.
|
java.lang.Character |
OracleCodec.decodeCharacter(PushbackString input)
Returns the decoded version of the next character from the input string and advances the
current character in the PushbackString.
|
java.lang.Character |
MySQLCodec.decodeCharacter(PushbackString input)
Returns the decoded version of the next character from the input string and advances the
current character in the PushbackString.
|
java.lang.Character |
JavaScriptCodec.decodeCharacter(PushbackString input)
Returns the decoded version of the next character from the input string and advances the
current character in the PushbackString.
|
java.lang.Character |
HTMLEntityCodec.decodeCharacter(PushbackString input)
Returns the decoded version of the next character from the input string and advances the
current character in the PushbackString.
|
java.lang.Character |
DB2Codec.decodeCharacter(PushbackString input) |
java.lang.Character |
Codec.decodeCharacter(PushbackString input)
Returns the decoded version of the next character from the input string and advances the
current character in the PushbackString.
|
java.lang.Character |
CSSCodec.decodeCharacter(PushbackString input)
Returns the decoded version of the next character from the input string and advances the
current character in the PushbackString.
|
private java.lang.Character |
MySQLCodec.decodeCharacterANSI(PushbackString input)
decodeCharacterANSI decodes the next character from ANSI SQL escaping
|
private java.lang.Character |
MySQLCodec.decodeCharacterMySQL(PushbackString input)
decodeCharacterMySQL decodes all the potential escaped characters that MySQL is prepared to escape
|
private java.lang.Character |
XMLEntityCodec.getNamedEntity(PushbackString input)
Converts the rest of a named entity to a character.
|
private java.lang.Character |
HTMLEntityCodec.getNamedEntity(PushbackString input)
Returns the decoded version of the character starting at index, or
null if no decoding is possible.
|
private static java.lang.Character |
XMLEntityCodec.getNumericEntity(PushbackString input)
Converts the rest of a numeric entity to a character.
|
private java.lang.Character |
HTMLEntityCodec.getNumericEntity(PushbackString input)
getNumericEntry checks input to see if it is a numeric entity
|
private static java.lang.Character |
XMLEntityCodec.parseHex(PushbackString input)
Converts the rest of a hexidecimal numeric entity to a character.
|
private java.lang.Character |
HTMLEntityCodec.parseHex(PushbackString input)
Parse a hex encoded entity
|
private static java.lang.Character |
XMLEntityCodec.parseNumber(PushbackString input)
Converts the rest of a decimal numeric entity to a character.
|
private java.lang.Character |
HTMLEntityCodec.parseNumber(PushbackString input)
Parse a decimal number, such as those from JavaScript's String.fromCharCode(value)
|