META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF.RSA
META-INF/
META-INF/eclipse.inf
.api_description
about.html
plugin.properties
org/
org/eclipse/
org/eclipse/core/
org/eclipse/core/internal/
org/eclipse/core/internal/runtime/
org/eclipse/core/internal/runtime/auth/
org/eclipse/core/internal/runtime/auth/Activator.class
Activator.java
package org.eclipse.core.internal.runtime.auth
public org.eclipse.core.internal.runtime.auth.Activator extends java.lang.Object implements org.osgi.framework.BundleActivator  {
	private static org.osgi.framework.BundleContext bundleContext
	private static org.osgi.util.tracker.ServiceTracker logTracker
	static Class class$0
	public void  () 
	public static org.osgi.framework.BundleContext getContext () 
	public void start (org.osgi.framework.BundleContext)  throws java.lang.Exception 
		org.osgi.framework.BundleContext context
	public void stop (org.osgi.framework.BundleContext)  throws java.lang.Exception 
		org.osgi.framework.BundleContext context
	public static void log (org.eclipse.core.runtime.IStatus) 
		org.eclipse.core.runtime.IStatus status
		org.eclipse.osgi.framework.log.FrameworkLog log
	private static org.eclipse.osgi.framework.log.FrameworkLogEntry getEntry (org.eclipse.core.runtime.IStatus) 
		org.eclipse.core.runtime.IStatus status
		Throwable t
		java.util.ArrayList childlist
		int stackCode
		org.eclipse.core.runtime.IStatus coreStatus
		org.eclipse.core.runtime.IStatus[] children
		int i
		org.eclipse.osgi.framework.log.FrameworkLogEntry[] children
}

org/eclipse/core/internal/runtime/auth/AuthorizationDatabase.class
AuthorizationDatabase.java
package org.eclipse.core.internal.runtime.auth
public org.eclipse.core.internal.runtime.auth.AuthorizationDatabase extends java.lang.Object {
	public static final String PI_RUNTIME_AUTH
	public static final int FAILED_READ_METADATA
	public static final int FAILED_WRITE_METADATA
	private static final int KEYRING_FILE_VERSION
	private java.util.Hashtable authorizationInfo
	private java.util.Hashtable protectionSpace
	private java.io.File file
	private String password
	private boolean needsSaving
	public void  () 
	public void  (java.lang.String, java.lang.String)  throws org.eclipse.core.runtime.CoreException 
		String filename
		String password
	public void addAuthorizationInfo (java.net.URL, java.lang.String, java.lang.String, java.util.Map) 
		java.net.URL serverUrl
		String realm
		String authScheme
		java.util.Map info
		String url
		java.util.Hashtable realmToAuthScheme
		java.util.Hashtable authSchemeToInfo
	public void addProtectionSpace (java.net.URL, java.lang.String) 
		java.net.URL resourceUrl
		String realm
		String oldRealm
		String url1
		java.util.Enumeration urls
		String url2
	public void flushAuthorizationInfo (java.net.URL, java.lang.String, java.lang.String) 
		java.net.URL serverUrl
		String realm
		String authScheme
		java.util.Hashtable realmToAuthScheme
		java.util.Hashtable authSchemeToInfo
	public java.util.Map getAuthorizationInfo (java.net.URL, java.lang.String, java.lang.String) 
		java.net.URL serverUrl
		String realm
		String authScheme
		java.util.Hashtable realmToAuthScheme
		java.util.Hashtable authSchemeToInfo
	public java.lang.String getProtectionSpace (java.net.URL) 
		java.net.URL resourceUrl
		String realm
	private void load ()  throws org.eclipse.core.runtime.CoreException 
		java.io.InputStream input
		java.io.IOException e
		ClassNotFoundException e
	private void load (java.io.InputStream)  throws java.io.IOException java.lang.ClassNotFoundException org.eclipse.core.runtime.CoreException 
		java.io.InputStream is
		int version
		org.eclipse.core.internal.runtime.auth.CipherInputStream cis
		java.io.ObjectInputStream ois
	public void save ()  throws org.eclipse.core.runtime.CoreException 
		java.io.FileOutputStream out
		java.io.IOException e
	private static boolean canWrite (java.io.File) 
		java.io.File installDir
		java.io.File fileTest
	private void save (java.io.FileOutputStream)  throws java.io.IOException 
		java.io.FileOutputStream os
		org.eclipse.core.internal.runtime.auth.CipherOutputStream cos
		java.io.ObjectOutputStream oos
	public boolean setPassword (java.lang.String, java.lang.String) 
		String oldValue
		String newValue
}

org/eclipse/core/internal/runtime/auth/AuthorizationHandler.class
AuthorizationHandler.java
package org.eclipse.core.internal.runtime.auth
public org.eclipse.core.internal.runtime.auth.AuthorizationHandler extends java.lang.Object {
	static final String F_KEYRING
	private static org.eclipse.core.internal.runtime.auth.AuthorizationDatabase keyring
	private static long keyringTimeStamp
	private static String keyringFile
	private static String password
	static Class class$0
	static void  () 
	public void  () 
	private static void loadKeyring ()  throws org.eclipse.core.runtime.CoreException 
		org.osgi.framework.ServiceReference[] refs
		org.eclipse.osgi.service.datalocation.Location configurationLocation
		java.io.File file
		org.eclipse.core.runtime.CoreException e
	private static void saveKeyring ()  throws org.eclipse.core.runtime.CoreException 
	public static synchronized void addAuthorizationInfo (java.net.URL, java.lang.String, java.lang.String, java.util.Map)  throws org.eclipse.core.runtime.CoreException 
		java.net.URL serverUrl
		String realm
		String authScheme
		java.util.Map info
	public static synchronized void addProtectionSpace (java.net.URL, java.lang.String)  throws org.eclipse.core.runtime.CoreException 
		java.net.URL resourceUrl
		String realm
	public static synchronized void flushAuthorizationInfo (java.net.URL, java.lang.String, java.lang.String)  throws org.eclipse.core.runtime.CoreException 
		java.net.URL serverUrl
		String realm
		String authScheme
	public static synchronized java.util.Map getAuthorizationInfo (java.net.URL, java.lang.String, java.lang.String) 
		java.net.URL serverUrl
		String realm
		String authScheme
		java.util.Map info
	public static synchronized java.lang.String getProtectionSpace (java.net.URL) 
		java.net.URL resourceUrl
	public static void setKeyringFile (java.lang.String) 
		String file
	public static void setPassword (java.lang.String) 
		String keyringPassword
}

org/eclipse/core/internal/runtime/auth/Cipher.class
Cipher.java
package org.eclipse.core.internal.runtime.auth
public org.eclipse.core.internal.runtime.auth.Cipher extends java.lang.Object {
	public static final int DECRYPT_MODE
	public static final int ENCRYPT_MODE
	private static final int RANDOM_SIZE
	private int mode
	private byte[] password
	private byte[] byteStream
	private int byteStreamOffset
	private java.security.MessageDigest digest
	private java.util.Random random
	private final byte[] toDigest
	public void  (int, java.lang.String) 
		int mode
		String passwordString
	public byte[] cipher (byte[])  throws java.lang.Exception 
		byte[] data
	public byte[] cipher (byte[], int, int)  throws java.lang.Exception 
		byte[] data
		int off
		int len
	public byte cipher (byte)  throws java.lang.Exception 
		byte datum
		byte[] data
	private byte[] generateBytes ()  throws java.lang.Exception 
		long seed
		int i
	private byte[] nextRandom (int)  throws java.lang.Exception 
		int length
		byte[] nextRandom
		int nextRandomOffset
	private byte[] transform (byte[], int, int, int)  throws java.lang.Exception 
		byte[] data
		int off
		int len
		int mod
		byte[] result
		int i
}

org/eclipse/core/internal/runtime/auth/CipherInputStream.class
CipherInputStream.java
package org.eclipse.core.internal.runtime.auth
public org.eclipse.core.internal.runtime.auth.CipherInputStream extends java.io.FilterInputStream {
	private static final int SKIP_BUFFER_SIZE
	private org.eclipse.core.internal.runtime.auth.Cipher cipher
	public void  (java.io.InputStream, java.lang.String) 
		java.io.InputStream is
		String password
	public boolean markSupported () 
	public int read ()  throws java.io.IOException 
		int b
		Exception e
	public int read (byte[], int, int)  throws java.io.IOException 
		byte[] b
		int off
		int len
		int bytesRead
		byte[] result
		int i
		Exception e
	public long skip (long)  throws java.io.IOException 
		long n
		byte[] buffer
		int bytesRead
		long bytesRemaining
}

org/eclipse/core/internal/runtime/auth/CipherOutputStream.class
CipherOutputStream.java
package org.eclipse.core.internal.runtime.auth
public org.eclipse.core.internal.runtime.auth.CipherOutputStream extends java.io.FilterOutputStream {
	private org.eclipse.core.internal.runtime.auth.Cipher cipher
	public void  (java.io.OutputStream, java.lang.String) 
		java.io.OutputStream os
		String password
	public void write (int)  throws java.io.IOException 
		int b
		Exception e
}

org/eclipse/core/internal/runtime/auth/Messages.class
Messages.java
package org.eclipse.core.internal.runtime.auth
public org.eclipse.core.internal.runtime.auth.Messages extends org.eclipse.osgi.util.NLS {
	private static final String BUNDLE_NAME
	public static String meta_authFormatChanged
	public static String meta_keyringFileAlreadySpecified
	public static String meta_unableToReadAuthorization
	public static String meta_unableToWriteAuthorization
	static Class class$0
	static void  () 
	public void  () 
	public static void reloadMessages () 
}

org/eclipse/core/internal/runtime/auth/URLTool.class
URLTool.java
package org.eclipse.core.internal.runtime.auth
public org.eclipse.core.internal.runtime.auth.URLTool extends java.lang.Object {
	public void  () 
	public static java.net.URL getParent (java.net.URL) 
		java.net.URL url
		String file
		int len
		int lastSlashIndex
		int i
		java.net.MalformedURLException e
}

org/eclipse/core/internal/runtime/auth/messages.properties