Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/HTBridge/pivaa
/ functions
Functions
609 in github.com/HTBridge/pivaa
⨍
Functions
609
◇
Types & classes
110
↓ 3 callers
Method
getMaxPhonemes
Gets the maximum number of phonemes the engine will calculate for a given input. @return the maximum number of phonemes @since 1.7
app/src/main/java/org/apache/commons/codec/language/bm/PhoneticEngine.java:526
↓ 3 callers
Method
getNameType
Gets the name type currently in operation. @return the NameType currently being used
app/src/main/java/org/apache/commons/codec/language/bm/BeiderMorseEncoder.java:107
↓ 3 callers
Method
getRuleType
Gets the rule type currently in operation. @return the RuleType currently being used
app/src/main/java/org/apache/commons/codec/language/bm/BeiderMorseEncoder.java:116
↓ 3 callers
Method
getSha1Digest
Returns an SHA-1 digest. @return An SHA-1 digest instance. @throws IllegalArgumentException when a {@link NoSuchAlgorithmException} is ca
app/src/main/java/org/apache/commons/codec/digest/DigestUtils.java:202
↓ 3 callers
Method
getTitle
()
app/src/main/java/com/htbridge/pivaa/handlers/database/DatabaseRecord.java:30
↓ 3 callers
Method
getUnsignedOctet
Return the byte at position <code>index</code> of the byte array and make sure it is unsigned. @param index position in the array @param b
app/src/main/java/org/apache/commons/codec/net/QuotedPrintableCodec.java:201
↓ 3 callers
Method
initDatabaseOuter
()
app/src/main/java/com/htbridge/pivaa/handlers/database/DatabaseHelper.java:68
↓ 3 callers
Method
invoke
Invokes the rules. Loops over the rules list, stopping at the first one that has a matching context and pattern. Then applies this rule to the phoneme
app/src/main/java/org/apache/commons/codec/language/bm/PhoneticEngine.java:206
↓ 3 callers
Method
isConcat
Discovers if multiple possible encodings are concatenated. @return true if multiple encodings are concatenated, false if just the first one is return
app/src/main/java/org/apache/commons/codec/language/bm/BeiderMorseEncoder.java:125
↓ 3 callers
Method
isEmpty
Returns <code>true</code> if the given array is <code>null</code> or empty (size 0.) @param array the source array @return <code>true</cod
app/src/main/java/org/apache/commons/codec/binary/BinaryCodec.java:225
↓ 3 callers
Method
isWhiteSpace
Checks if a byte value is whitespace or not. Whitespace is taken to mean: space, tab, CR, LF @param byteToCheck the byte to check @return t
app/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java:311
↓ 3 callers
Method
md2
Calculates the MD2 digest and returns the value as a 16 element <code>byte[]</code>. @param data Data to digest @return MD2 digest @since
app/src/main/java/org/apache/commons/codec/digest/DigestUtils.java:275
↓ 3 callers
Method
md5
Calculates the MD5 digest and returns the value as a 16 element <code>byte[]</code>. @param data Data to digest @return MD5 digest
app/src/main/java/org/apache/commons/codec/digest/DigestUtils.java:350
↓ 3 callers
Method
removeDoubleConsonants
Replaces any double consonant pair with the single letter equivalent. <h2>API Usage</h2> <p> Consider this method private, it is package protected fo
app/src/main/java/org/apache/commons/codec/language/MatchRatingApproachEncoder.java:382
↓ 3 callers
Method
removeVowels
Deletes all vowels unless the vowel begins the word. <h2>API Usage</h2> <p> Consider this method private, it is package protected for unit testing on
app/src/main/java/org/apache/commons/codec/language/MatchRatingApproachEncoder.java:405
↓ 3 callers
Method
renderListView
Render custom item
app/src/main/java/com/htbridge/pivaa/DatabaseActivity.java:112
↓ 3 callers
Method
sha1Hex
Calculates the SHA-1 digest and returns the value as a hex string. @param data Data to digest @return SHA-1 digest as a hex string @since
app/src/main/java/org/apache/commons/codec/digest/DigestUtils.java:502
↓ 3 callers
Method
sha256
Calculates the SHA-256 digest and returns the value as a <code>byte[]</code>. <p> Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.
app/src/main/java/org/apache/commons/codec/digest/DigestUtils.java:543
↓ 3 callers
Method
sha384
Calculates the SHA-384 digest and returns the value as a <code>byte[]</code>. <p> Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.
app/src/main/java/org/apache/commons/codec/digest/DigestUtils.java:637
↓ 3 callers
Method
sha512
Calculates the SHA-512 digest and returns the value as a <code>byte[]</code>. <p> Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.
app/src/main/java/org/apache/commons/codec/digest/DigestUtils.java:731
↓ 3 callers
Method
showProgress
Shows the progress UI and hides the login form.
app/src/main/java/com/htbridge/pivaa/MainActivity.java:221
↓ 3 callers
Method
toString
()
app/src/main/java/org/apache/commons/codec/language/DaitchMokotoffSoundex.java:150
↓ 2 callers
Method
_reset
()
app/src/main/java/org/apache/commons/codec/digest/PureJavaCrc32.java:63
↓ 2 callers
Method
applyFinalRules
Applies the final rules to convert from a language-specific phonetic representation to a language-independent representation. @param phonemeBuilder t
app/src/main/java/org/apache/commons/codec/language/bm/PhoneticEngine.java:329
↓ 2 callers
Method
attemptLogin
Attempts to sign in or register the account specified by the login form. If there are form errors (invalid username, missing fields, etc.), the errors
app/src/main/java/com/htbridge/pivaa/MainActivity.java:158
↓ 2 callers
Method
available
Returns the amount of buffered data available for reading. @param context the context to be used @return The amount of buffered data available for re
app/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java:231
↓ 2 callers
Method
containsAlphabetOrPad
Tests a given byte array to see if it contains any characters within the alphabet or PAD. Intended for use in checking line-ending arrays @param arr
app/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java:517
↓ 2 callers
Method
dEncrypt
(int el, final int r, final int s, final int e0, final int e1, final int sArr[])
app/src/main/java/org/apache/commons/codec/digest/UnixCrypt.java:325
↓ 2 callers
Method
decodeText
Applies an RFC 1522 compliant decoding scheme to the given string of text. <p> This method processes the "encoded-word" header common to all the RFC 1
app/src/main/java/org/apache/commons/codec/net/RFC1522Codec.java:124
↓ 2 callers
Method
difference
Encodes the Strings and returns the number of characters in the two encoded Strings that are the same. <ul> <li>For Soundex, this return value ranges
app/src/main/java/org/apache/commons/codec/language/SoundexUtils.java:85
↓ 2 callers
Method
empty
An empty builder where all phonemes must come from some set of languages. This will contain a single phoneme of zero characters. This can then be appe
app/src/main/java/org/apache/commons/codec/language/bm/PhoneticEngine.java:71
↓ 2 callers
Method
encode
Encodes an Object using the caverphone algorithm. This method is provided in order to satisfy the requirements of the Encoder interface, and will thro
app/src/main/java/org/apache/commons/codec/language/AbstractCaverphone.java:55
↓ 2 callers
Method
encode
Encodes an Object using the Base-N algorithm. This method is provided in order to satisfy the requirements of the Encoder interface, and will throw an
app/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java:333
↓ 2 callers
Method
fourBytesToInt
(final byte b[], int offset)
app/src/main/java/org/apache/commons/codec/digest/UnixCrypt.java:384
↓ 2 callers
Method
getAny
()
app/src/main/java/org/apache/commons/codec/language/bm/Languages.java:217
↓ 2 callers
Method
getCharset
Gets the default charset name used for string decoding and encoding. @return the default charset name @since 1.7
app/src/main/java/org/apache/commons/codec/net/QuotedPrintableCodec.java:546
↓ 2 callers
Method
getDefaultCharset
The default charset used for string decoding and encoding. @return the default string charset.
app/src/main/java/org/apache/commons/codec/net/URLCodec.java:357
↓ 2 callers
Method
getEncoding
Returns the codec name (referred to as encoding in the RFC 1522). @return name of the codec
app/src/main/java/org/apache/commons/codec/net/RFC1522Codec.java:163
↓ 2 callers
Method
getI
()
app/src/main/java/org/apache/commons/codec/language/bm/PhoneticEngine.java:191
↓ 2 callers
Method
getMd2Digest
Returns an MD2 MessageDigest. @return An MD2 digest instance. @throws IllegalArgumentException when a {@link NoSuchAlgorithmException} is
app/src/main/java/org/apache/commons/codec/digest/DigestUtils.java:175
↓ 2 callers
Method
getNextChar
()
app/src/main/java/org/apache/commons/codec/language/ColognePhonetic.java:265
↓ 2 callers
Method
getNextPos
()
app/src/main/java/org/apache/commons/codec/language/ColognePhonetic.java:269
↓ 2 callers
Method
getPhonemeBuilder
()
app/src/main/java/org/apache/commons/codec/language/bm/PhoneticEngine.java:195
↓ 2 callers
Method
getPhonemeText
()
app/src/main/java/org/apache/commons/codec/language/bm/Rule.java:138
↓ 2 callers
Method
getPhonemes
()
app/src/main/java/org/apache/commons/codec/language/bm/Rule.java:173
↓ 2 callers
Method
getProof
Method for getting value of proof @return
app/src/main/java/com/htbridge/pivaa/handlers/ObjectSerialization.java:35
↓ 2 callers
Method
getSha256Digest
Returns an SHA-256 digest. <p> Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0. </p> @return An SHA-256 digest instance. @throw
app/src/main/java/org/apache/commons/codec/digest/DigestUtils.java:218
↓ 2 callers
Method
getSha384Digest
Returns an SHA-384 digest. <p> Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0. </p> @return An SHA-384 digest instance. @throw
app/src/main/java/org/apache/commons/codec/digest/DigestUtils.java:234
↓ 2 callers
Method
getSha512Digest
Returns an SHA-512 digest. <p> Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0. </p> @return An SHA-512 digest instance. @throw
app/src/main/java/org/apache/commons/codec/digest/DigestUtils.java:250
↓ 2 callers
Method
guessLanguages
Guesses the languages of a word. @param input the word @return a Set of Strings of language names that are potential matches for the input
app/src/main/java/org/apache/commons/codec/language/bm/Lang.java:214
↓ 2 callers
Method
hPermOp
(int a, final int n, final int m)
app/src/main/java/org/apache/commons/codec/digest/UnixCrypt.java:392
↓ 2 callers
Method
hasMarker
(final char[] mapping)
app/src/main/java/org/apache/commons/codec/language/Soundex.java:162
↓ 2 callers
Method
hash
Hashing algorithm @param text @return
app/src/main/java/com/htbridge/pivaa/handlers/Encryption.java:19
↓ 2 callers
Method
initDatabase
Initialize DB @param db
app/src/main/java/com/htbridge/pivaa/handlers/database/DatabaseHelper.java:53
↓ 2 callers
Method
initializeState
()
app/src/main/java/org/apache/commons/codec/digest/XXHash32.java:153
↓ 2 callers
Method
intToFourBytes
(final int iValue, final byte b[], int offset)
app/src/main/java/org/apache/commons/codec/digest/UnixCrypt.java:398
↓ 2 callers
Method
isMatch
(CharSequence input)
app/src/main/java/org/apache/commons/codec/language/bm/Rule.java:193
↓ 2 callers
Method
isSingleton
()
app/src/main/java/org/apache/commons/codec/language/bm/Languages.java:227
↓ 2 callers
Method
map
Maps the given upper-case character to its Soundex code. @param ch An upper-case character. @return A Soundex code. @throws IllegalA
app/src/main/java/org/apache/commons/codec/language/Soundex.java:278
↓ 2 callers
Method
matches
(final String txt)
app/src/main/java/org/apache/commons/codec/language/bm/Lang.java:91
↓ 2 callers
Method
md5Crypt
Generates a libc6 crypt() compatible "$1$" hash value. <p> See {@link Crypt#crypt(String, String)} for details. @param keyBytes plaintext
app/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java:140
↓ 2 callers
Method
newIllegalStateException
(final String charsetName, final Unsupporte
app/src/main/java/org/apache/commons/codec/binary/StringUtils.java:273
↓ 2 callers
Method
nysiis
Retrieves the NYSIIS code for a given String object. @param str String to encode using the NYSIIS algorithm @return A NYSIIS code for the
app/src/main/java/org/apache/commons/codec/language/Nysiis.java:246
↓ 2 callers
Method
parse
()
app/src/main/java/com/htbridge/pivaa/handlers/about/AboutJSONParser.java:24
↓ 2 callers
Method
parsePhoneme
(final String ph)
app/src/main/java/org/apache/commons/codec/language/bm/Rule.java:373
↓ 2 callers
Method
parseRules
(final Scanner scanner, final String location)
app/src/main/java/org/apache/commons/codec/language/bm/Rule.java:408
↓ 2 callers
Method
pattern
Attempts to compile the regex into direct string ops, falling back to Pattern and Matcher in the worst case. @param regex the regular expr
app/src/main/java/org/apache/commons/codec/language/bm/Rule.java:508
↓ 2 callers
Method
process
(final byte[] b, final int offset)
app/src/main/java/org/apache/commons/codec/digest/XXHash32.java:160
↓ 2 callers
Method
renderListView
Render custom item
app/src/main/java/com/htbridge/pivaa/AboutActivity.java:48
↓ 2 callers
Method
restrictTo
(final LanguageSet other)
app/src/main/java/org/apache/commons/codec/language/bm/Languages.java:232
↓ 2 callers
Method
setAuthor
(String author)
app/src/main/java/com/htbridge/pivaa/handlers/database/DatabaseRecord.java:45
↓ 2 callers
Method
setId
(int id)
app/src/main/java/com/htbridge/pivaa/handlers/database/DatabaseRecord.java:26
↓ 2 callers
Method
setProof
Method for setting value of proof @param p
app/src/main/java/com/htbridge/pivaa/handlers/ObjectSerialization.java:27
↓ 2 callers
Method
setTitle
(String title)
app/src/main/java/com/htbridge/pivaa/handlers/database/DatabaseRecord.java:34
↓ 2 callers
Method
sha2Crypt
Generates a libc6 crypt() compatible "$5$" or "$6$" SHA2 based hash value. <p> This is a nearly line by line conversion of the original C function. Th
app/src/main/java/org/apache/commons/codec/digest/Sha2Crypt.java:133
↓ 2 callers
Method
sha512Crypt
Generates a libc crypt() compatible "$6$" hash value with random salt. <p> See {@link Crypt#crypt(String, String)} for details. @param keyBytes
app/src/main/java/org/apache/commons/codec/digest/Sha2Crypt.java:520
↓ 2 callers
Method
soundex
Retrieves the Refined Soundex code for a given String object. @param str String to encode using the Refined Soundex algorithm @retur
app/src/main/java/org/apache/commons/codec/language/RefinedSoundex.java:189
↓ 2 callers
Method
soundex
Retrieves the Soundex code for a given String object. @param str String to encode using the Soundex algorithm @return A soundex code
app/src/main/java/org/apache/commons/codec/language/Soundex.java:307
↓ 2 callers
Method
stopRecording
(boolean saveFile)
app/src/main/java/com/htbridge/pivaa/handlers/VulnerableService.java:108
↓ 2 callers
Method
toAsciiChars
Converts an array of raw binary data into an array of ASCII 0 and 1 characters. @param raw the raw binary data to convert @return an
app/src/main/java/org/apache/commons/codec/binary/BinaryCodec.java:268
↓ 2 callers
Method
toDigit
Converts a hexadecimal character to an integer. @param ch A character to convert to an integer digit @param index The index of
app/src/main/java/org/apache/commons/codec/binary/Hex.java:283
↓ 2 callers
Method
update
(Uri uri, ContentValues values, String selection, String[] selectionArgs)
app/src/main/java/com/htbridge/pivaa/handlers/VulnerableContentProvider.java:60
↓ 1 callers
Method
addLeft
(final char ch)
app/src/main/java/org/apache/commons/codec/language/ColognePhonetic.java:253
↓ 1 callers
Method
addRight
(final char chr)
app/src/main/java/org/apache/commons/codec/language/ColognePhonetic.java:234
↓ 1 callers
Method
apply
Applies the given phoneme expression to all phonemes in this phoneme builder. <p> This will lengthen phonemes that have compatible language sets to th
app/src/main/java/org/apache/commons/codec/language/bm/PhoneticEngine.java:106
↓ 1 callers
Method
body
(final int schedule[], final int eSwap0, final int eSwap1)
app/src/main/java/org/apache/commons/codec/digest/UnixCrypt.java:281
↓ 1 callers
Method
cleanInput
Cleans the input.
app/src/main/java/org/apache/commons/codec/language/DoubleMetaphone.java:888
↓ 1 callers
Method
cleanup
Performs a cleanup of the input string before the actual soundex transformation. <p> Removes all whitespace characters and performs ASCII folding if e
app/src/main/java/org/apache/commons/codec/language/DaitchMokotoffSoundex.java:378
↓ 1 callers
Method
conditionC0
Complex condition 0 for 'C'.
app/src/main/java/org/apache/commons/codec/language/DoubleMetaphone.java:781
↓ 1 callers
Method
conditionCH0
Complex condition 0 for 'CH'.
app/src/main/java/org/apache/commons/codec/language/DoubleMetaphone.java:800
↓ 1 callers
Method
conditionCH1
Complex condition 1 for 'CH'.
app/src/main/java/org/apache/commons/codec/language/DoubleMetaphone.java:816
↓ 1 callers
Method
conditionL0
Complex condition 0 for 'L'.
app/src/main/java/org/apache/commons/codec/language/DoubleMetaphone.java:827
↓ 1 callers
Method
conditionM0
Complex condition 0 for 'M'.
app/src/main/java/org/apache/commons/codec/language/DoubleMetaphone.java:843
↓ 1 callers
Method
copyAssetsToFiles
Copy the DEX file from assets to folder for optimized DEX
app/src/main/java/com/htbridge/pivaa/handlers/LoadCode.java:88
↓ 1 callers
Method
copyData
(int start, final int length)
app/src/main/java/org/apache/commons/codec/language/ColognePhonetic.java:216
↓ 1 callers
Method
copyFile
Copy file
app/src/main/java/com/htbridge/pivaa/handlers/LoadCode.java:108
↓ 1 callers
Method
createBranch
Creates a new branch, identical to this branch. @return a new, identical branch
app/src/main/java/org/apache/commons/codec/language/DaitchMokotoffSoundex.java:93
↓ 1 callers
Method
createLockFile
Creates lockfile @return boolean
app/src/main/java/com/htbridge/pivaa/handlers/Authentication.java:85
↓ 1 callers
Method
crypt
Generates a crypt(3) compatible hash using the DES algorithm. <p> As no salt is given, a random one will be used. @param original plaintex
app/src/main/java/org/apache/commons/codec/digest/UnixCrypt.java:181
↓ 1 callers
Method
decodeUrl
Decodes an array of URL safe 7-bit characters into an array of original bytes. Escaped characters are converted back to their original representation.
app/src/main/java/org/apache/commons/codec/net/URLCodec.java:166
← previous
next →
101–200 of 609, ranked by callers