IBANCheckDigit.java
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.commons.validator.routines.checkdigit;
import java.io.Serializable;
/**
* <b>IBAN</b> (International Bank Account Number) Check Digit calculation/validation.
* <p>
* This routine is based on the ISO 7064 Mod 97,10 check digit calculation routine.
* <p>
* The two check digit characters in a IBAN number are the third and fourth characters
* in the code. For <i>check digit</i> calculation/validation the first four characters are moved
* to the end of the code.
* So <code>CCDDnnnnnnn</code> becomes <code>nnnnnnnCCDD</code> (where
* <code>CC</code> is the country code and <code>DD</code> is the check digit). For
* check digit calculation the check digit value should be set to zero (i.e.
* <code>CC00nnnnnnn</code> in this example.
* <p>
* Note: the class does not check the format of the IBAN number, only the check digits.
* <p>
* For further information see
* <a href="https://en.wikipedia.org/wiki/International_Bank_Account_Number">Wikipedia -
* IBAN number</a>.
*
* @since 1.4
*/
public final class IBANCheckDigit extends AbstractCheckDigit implements Serializable {
private static final int MIN_CODE_LEN = 5;
private static final long serialVersionUID = -3600191725934382801L;
private static final int MAX_ALPHANUMERIC_VALUE = 35; // Character.getNumericValue('Z')
/** Singleton IBAN Number Check Digit instance */
public static final CheckDigit IBAN_CHECK_DIGIT = new IBANCheckDigit();
private static final long MAX = 999999999;
private static final long MODULUS = 97;
/**
* Constructs Check Digit routine for IBAN Numbers.
*/
public IBANCheckDigit() {
}
/**
* Calculate the <i>Check Digit</i> for an IBAN code.
* <p>
* <b>Note:</b> The check digit is the third and fourth
* characters and is set to the value "<code>00</code>".
*
* @param code The code to calculate the Check Digit for
* @return The calculated Check Digit as 2 numeric decimal characters, e.g. "42"
* @throws CheckDigitException if an error occurs calculating
* the check digit for the specified code
*/
@Override
public String calculate(String code) throws CheckDigitException {
if (code == null || code.length() < MIN_CODE_LEN) {
throw new CheckDigitException("Invalid Code length=" + (code == null ? 0 : code.length()));
}
code = code.substring(0, 2) + "00" + code.substring(4); // CHECKSTYLE IGNORE MagicNumber
final int modulusResult = calculateModulus(code);
final int charValue = 98 - modulusResult; // CHECKSTYLE IGNORE MagicNumber
final String checkDigit = Integer.toString(charValue);
return charValue > 9 ? checkDigit : "0" + checkDigit; // CHECKSTYLE IGNORE MagicNumber
}
/**
* Calculate the modulus for a code.
*
* @param code The code to calculate the modulus for.
* @return The modulus value
* @throws CheckDigitException if an error occurs calculating the modulus
* for the specified code
*/
private int calculateModulus(final String code) throws CheckDigitException {
final String reformattedCode = code.substring(4) + code.substring(0, 4); // CHECKSTYLE IGNORE MagicNumber
long total = 0;
for (int i = 0; i < reformattedCode.length(); i++) {
final int charValue = Character.getNumericValue(reformattedCode.charAt(i));
if (charValue < 0 || charValue > MAX_ALPHANUMERIC_VALUE) {
throw new CheckDigitException("Invalid Character[" + i + "] = '" + charValue + "'");
}
total = (charValue > 9 ? total * 100 : total * 10) + charValue; // CHECKSTYLE IGNORE MagicNumber
if (total > MAX) {
total %= MODULUS;
}
}
return (int) (total % MODULUS);
}
/**
* Validate the check digit of an IBAN code.
*
* @param code The code to validate
* @return {@code true} if the check digit is valid, otherwise
* {@code false}
*/
@Override
public boolean isValid(final String code) {
if (code == null || code.length() < MIN_CODE_LEN) {
return false;
}
final String check = code.substring(2, 4); // CHECKSTYLE IGNORE MagicNumber
if ("00".equals(check) || "01".equals(check) || "99".equals(check)) {
return false;
}
try {
return calculateModulus(code) == 1;
} catch (final CheckDigitException ex) {
return false;
}
}
}