Skip to content
Snippets Groups Projects
Commit 4eeae739 authored by Samuel H. Kenyon's avatar Samuel H. Kenyon
Browse files

More renaming.

parent b34d0c26
No related branches found
No related tags found
No related merge requests found
...@@ -745,10 +745,10 @@ public static String getHashDatabaseName(int dbHandle) throws TskCoreException { ...@@ -745,10 +745,10 @@ public static String getHashDatabaseName(int dbHandle) throws TskCoreException {
// use lookupNSRLDatabase instead // use lookupNSRLDatabase instead
@Deprecated @Deprecated
public static TskData.FileKnown nsrlHashLookup(String hash) throws TskCoreException { public static TskData.FileKnown nsrlHashLookup(String hash) throws TskCoreException {
return lookupNSRLDatabase(hash); return lookupInNSRLDatabase(hash);
} }
public static TskData.FileKnown lookupNSRLDatabase(String hash) throws TskCoreException { public static TskData.FileKnown lookupInNSRLDatabase(String hash) throws TskCoreException {
return TskData.FileKnown.valueOf((byte) nsrlDbLookup(hash)); return TskData.FileKnown.valueOf((byte) nsrlDbLookup(hash));
} }
...@@ -761,13 +761,13 @@ public static TskData.FileKnown lookupNSRLDatabase(String hash) throws TskCoreEx ...@@ -761,13 +761,13 @@ public static TskData.FileKnown lookupNSRLDatabase(String hash) throws TskCoreEx
* @throws TskCoreException if a critical error occurs within TSK core * @throws TskCoreException if a critical error occurs within TSK core
*/ */
// BC: Called by SleuthkitCase -> Deprecated // BC: Called by SleuthkitCase -> Deprecated
// use lookupHashDatabse instead // use lookupInHashDatabase instead
@Deprecated @Deprecated
public static TskData.FileKnown knownBadHashLookup(String hash, int dbHandle) throws TskCoreException { public static TskData.FileKnown knownBadHashLookup(String hash, int dbHandle) throws TskCoreException {
return lookupHashDatabase(hash, dbHandle); return lookupInHashDatabase(hash, dbHandle);
} }
public static TskData.FileKnown lookupHashDatabase(String hash, int dbHandle) throws TskCoreException { public static TskData.FileKnown lookupInHashDatabase(String hash, int dbHandle) throws TskCoreException {
return TskData.FileKnown.valueOf((byte) knownBadDbLookup(hash, dbHandle)); return TskData.FileKnown.valueOf((byte) knownBadDbLookup(hash, dbHandle));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment