/* * JBoss, Home of Professional Open Source. * Copyright 2014 Red Hat, Inc., and individual contributors * as indicated by the @author tags. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.wildfly.security.password.interfaces; import java.security.spec.AlgorithmParameterSpec; import java.util.Arrays; import org.wildfly.common.Assert; import org.wildfly.security.password.OneWayPassword; import org.wildfly.security.password.Password; import org.wildfly.security.password.PasswordFactory; import org.wildfly.security.password.spec.IteratedPasswordAlgorithmSpec; import org.wildfly.security.password.spec.IteratedSaltedPasswordAlgorithmSpec; import org.wildfly.security.password.spec.SaltedPasswordAlgorithmSpec; /** * An MD5-crypt password using the Sun scheme. * * @author <a href="mailto:fjuma@redhat.com">Farah Juma</a> */ public interface SunUnixMD5CryptPassword extends OneWayPassword { /** * The algorithm name "sun-crypt-md5". */ String ALGORITHM_SUN_CRYPT_MD5 = "sun-crypt-md5"; /** * The algorithm name "sun-crypt-md5-bare-salt". */ String ALGORITHM_SUN_CRYPT_MD5_BARE_SALT = "sun-crypt-md5-bare-salt"; /** * The default salt size of this password type. */ int DEFAULT_SALT_SIZE = 8; /** * The default iteration count of this password type. */ int DEFAULT_ITERATION_COUNT = 5500; /** * Get the salt component of this password. * * @return the salt */ byte[] getSalt(); /** * Get the hash component of this password. * * @return the hash */ byte[] getHash(); /** * Get the iteration count of this password. * * @return the iteration count */ int getIterationCount(); default IteratedSaltedPasswordAlgorithmSpec getParameterSpec() { return new IteratedSaltedPasswordAlgorithmSpec(getIterationCount(), getSalt()); } default boolean impliesParameters(AlgorithmParameterSpec parameterSpec) { Assert.checkNotNullParam("parameterSpec", parameterSpec); if (parameterSpec instanceof IteratedSaltedPasswordAlgorithmSpec) { final IteratedSaltedPasswordAlgorithmSpec spec = (IteratedSaltedPasswordAlgorithmSpec) parameterSpec; return getIterationCount() <= spec.getIterationCount() && Arrays.equals(getSalt(), spec.getSalt()); } else if (parameterSpec instanceof SaltedPasswordAlgorithmSpec) { return Arrays.equals(getSalt(), ((SaltedPasswordAlgorithmSpec) parameterSpec).getSalt()); } else if (parameterSpec instanceof IteratedPasswordAlgorithmSpec) { return getIterationCount() <= ((IteratedPasswordAlgorithmSpec) parameterSpec).getIterationCount(); } else { return false; } } /** * Creates and returns a copy of this {@link Password}. * * @return a copy of this {@link Password}. */ SunUnixMD5CryptPassword clone(); /** * Create a raw implementation of this password type. No validation of the content is performed, and the password * must be "adopted" in to a {@link PasswordFactory} (via the {@link PasswordFactory#translate(Password)} method) * before it can be validated and used to verify guesses. * * @param algorithm the algorithm name * @param hash the hash * @param salt the salt * @param iterationCount the iteration count * @return the raw password implementation */ static SunUnixMD5CryptPassword createRaw(String algorithm, byte[] salt, byte[] hash, int iterationCount) { Assert.checkNotNullParam("algorithm", algorithm); Assert.checkNotNullParam("salt", salt); Assert.checkNotNullParam("hash", hash); return new RawSunUnixMD5CryptPassword(algorithm, salt, hash, iterationCount); } }