本文整理汇总了Java中nxt.crypto.Crypto.rsDecode方法的典型用法代码示例。如果您正苦于以下问题:Java Crypto.rsDecode方法的具体用法?Java Crypto.rsDecode怎么用?Java Crypto.rsDecode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类nxt.crypto.Crypto
的用法示例。
在下文中一共展示了Crypto.rsDecode方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: Account
import nxt.crypto.Crypto; //导入方法依赖的package包/类
private Account(long id) {
if (id != Crypto.rsDecode(Crypto.rsEncode(id))) {
Logger.logMessage("CRITICAL ERROR: Reed-Solomon encoding fails for " + id);
}
this.id = id;
this.dbKey = accountDbKeyFactory.newKey(this.id);
this.creationHeight = Nxt.getBlockchain().getHeight();
}
示例2: parseAccountId
import nxt.crypto.Crypto; //导入方法依赖的package包/类
public static long parseAccountId(String account) {
if (account == null) {
return 0;
}
account = account.toUpperCase();
if (account.startsWith("BURST-")) {
return Crypto.rsDecode(account.substring(6));
} else {
return parseUnsignedLong(account);
}
}
示例3: Account
import nxt.crypto.Crypto; //导入方法依赖的package包/类
private Account(long id) {
if (id != Crypto.rsDecode(Crypto.rsEncode(id))) {
Logger.logMessage("CRITICAL ERROR: Reed-Solomon encoding fails for " + id);
}
this.id = id;
this.dbKey = accountDbKeyFactory.newKey(this.id);
this.creationHeight = Nxt.getBlockchain().getHeight();
currentLeasingHeightFrom = Integer.MAX_VALUE;
}
示例4: parseAccountId
import nxt.crypto.Crypto; //导入方法依赖的package包/类
public static long parseAccountId(String account) {
if (account == null) {
return 0;
}
account = account.toUpperCase();
if (account.startsWith("NXT-")) {
return Crypto.rsDecode(account.substring(4));
} else {
return parseUnsignedLong(account);
}
}
示例5: parseAccountId
import nxt.crypto.Crypto; //导入方法依赖的package包/类
public static long parseAccountId(String account) {
if (account == null || (account = account.trim()).isEmpty()) {
return 0;
}
account = account.toUpperCase();
if (account.startsWith("NHZ-")) {
return Crypto.rsDecode(account.substring(4));
} else {
return Long.parseUnsignedLong(account);
}
}