Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.security/src/org/eclipse/equinox/internal/security/storage/friends/IStorageConstants.java')
-rw-r--r--bundles/org.eclipse.equinox.security/src/org/eclipse/equinox/internal/security/storage/friends/IStorageConstants.java42
1 files changed, 0 insertions, 42 deletions
diff --git a/bundles/org.eclipse.equinox.security/src/org/eclipse/equinox/internal/security/storage/friends/IStorageConstants.java b/bundles/org.eclipse.equinox.security/src/org/eclipse/equinox/internal/security/storage/friends/IStorageConstants.java
deleted file mode 100644
index ae1f86a9b..000000000
--- a/bundles/org.eclipse.equinox.security/src/org/eclipse/equinox/internal/security/storage/friends/IStorageConstants.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.equinox.internal.security.storage.friends;
-
-/**
- * Constants and default values used by the secure storage.
- */
-public interface IStorageConstants {
-
- /**
- * Preference describing the default cipher algorithm for secure storage
- */
- public String CIPHER_KEY = "org.eclipse.equinox.security.preferences.cipher"; //$NON-NLS-1$
-
- /**
- * Preference describing the default key factory algorithm for secure storage
- */
- public String KEY_FACTORY_KEY = "org.eclipse.equinox.security.preferences.keyFactory"; //$NON-NLS-1$
-
- /**
- * Default cipher algorithm to use in secure storage
- */
- public String DEFAULT_CIPHER = "PBEWithMD5AndDES"; //$NON-NLS-1$
-
- /**
- * Default key factory algorithm to use in secure storage
- */
- public String DEFAULT_KEY_FACTORY = "PBEWithMD5AndDES"; //$NON-NLS-1$
-
- /**
- * Preference contains list of disabled password provider modules
- */
- public String DISABLED_PROVIDERS_KEY = "org.eclipse.equinox.security.preferences.disabledProviders"; //$NON-NLS-1$
-}

Back to the top