当前位置: 首页>>代码示例>>Java>>正文


Java Crypto.rsDecode方法代码示例

本文整理汇总了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();
}
 
开发者ID:muhatzg,项目名称:burstcoin,代码行数:9,代码来源:Account.java

示例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);
    }
}
 
开发者ID:muhatzg,项目名称:burstcoin,代码行数:12,代码来源:Convert.java

示例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;
}
 
开发者ID:giannisKonst,项目名称:blockchain,代码行数:10,代码来源:Account.java

示例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);
    }
}
 
开发者ID:giannisKonst,项目名称:blockchain,代码行数:12,代码来源:Convert.java

示例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);
    }
}
 
开发者ID:BitcoinFullnode,项目名称:ROKOS-OK-Bitcoin-Fullnode,代码行数:12,代码来源:Convert.java


注:本文中的nxt.crypto.Crypto.rsDecode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。