mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
13.08.2015 ea1068c292e9b341af6d6b563cd8988a96be20a9
opendj-server-legacy/src/main/java/org/opends/server/extensions/CryptPasswordStorageScheme.java
@@ -101,7 +101,7 @@
  /**
   * {@inheritDoc}
   */
  @Override()
  @Override
  public void initializePasswordStorageScheme(
                   CryptPasswordStorageSchemeCfg configuration)
         throws ConfigException, InitializationException {
@@ -114,7 +114,7 @@
  /**
   * {@inheritDoc}
   */
  @Override()
  @Override
  public String getStorageSchemeName()
  {
    return STORAGE_SCHEME_NAME_CRYPT;
@@ -241,7 +241,7 @@
  /**
   * {@inheritDoc}
   */
  @Override()
  @Override
  public ByteString encodePassword(ByteSequence plaintext)
         throws DirectoryException
  {
@@ -268,7 +268,7 @@
  /**
   * {@inheritDoc}
   */
  @Override()
  @Override
  public ByteString encodePasswordWithScheme(ByteSequence plaintext)
         throws DirectoryException
  {
@@ -379,7 +379,7 @@
  /**
   * {@inheritDoc}
   */
  @Override()
  @Override
  public boolean passwordMatches(ByteSequence plaintextPassword,
                                 ByteSequence storedPassword)
  {
@@ -405,7 +405,7 @@
  /**
   * {@inheritDoc}
   */
  @Override()
  @Override
  public boolean supportsAuthPasswordSyntax()
  {
    // This storage scheme does not support the authentication password syntax.
@@ -417,7 +417,7 @@
  /**
   * {@inheritDoc}
   */
  @Override()
  @Override
  public ByteString encodeAuthPassword(ByteSequence plaintext)
         throws DirectoryException
  {
@@ -431,7 +431,7 @@
  /**
   * {@inheritDoc}
   */
  @Override()
  @Override
  public boolean authPasswordMatches(ByteSequence plaintextPassword,
                                     String authInfo, String authValue)
  {
@@ -444,7 +444,7 @@
  /**
   * {@inheritDoc}
   */
  @Override()
  @Override
  public boolean isReversible()
  {
    return false;
@@ -455,7 +455,7 @@
  /**
   * {@inheritDoc}
   */
  @Override()
  @Override
  public ByteString getPlaintextValue(ByteSequence storedPassword)
         throws DirectoryException
  {
@@ -469,7 +469,7 @@
  /**
   * {@inheritDoc}
   */
  @Override()
  @Override
  public ByteString getAuthPasswordPlaintextValue(String authInfo,
                                                  String authValue)
         throws DirectoryException
@@ -484,7 +484,7 @@
  /**
   * {@inheritDoc}
   */
  @Override()
  @Override
  public boolean isStorageSchemeSecure()
  {
    // FIXME:
@@ -506,7 +506,7 @@
  /**
   * {@inheritDoc}
   */
  @Override()
  @Override
  public boolean isConfigurationAcceptable(
          PasswordStorageSchemeCfg configuration,
          List<LocalizableMessage> unacceptableReasons)