All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.tdchain.cipher.utils.CipherUtil Maven / Gradle / Ivy

There is a newer version: 3.0.1.TD1
Show newest version
/*
 * Copyright (c) 2017-2018 Beijing Tiande Technology Co., Ltd.
 * All Rights Reserved.
 */
package cn.tdchain.cipher.utils;

public class CipherUtil {
	public static String zeroSuffix(String passwd) {
		if (passwd.length() == 16) {
			return passwd;
		} else if (passwd.length() < 16) {
			passwd = passwd + "0000000000000000";
			return passwd.substring(0, 16);
		}
		return passwd.substring(0, 16);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy