本文整理汇总了Java中org.bouncycastle.tsp.TimeStampTokenInfo类的典型用法代码示例。如果您正苦于以下问题:Java TimeStampTokenInfo类的具体用法?Java TimeStampTokenInfo怎么用?Java TimeStampTokenInfo使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TimeStampTokenInfo类属于org.bouncycastle.tsp包,在下文中一共展示了TimeStampTokenInfo类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getMessageImprintDigestCalculator
import org.bouncycastle.tsp.TimeStampTokenInfo; //导入依赖的package包/类
DigestCalculator getMessageImprintDigestCalculator(DigestCalculatorProvider calculatorProvider)
throws OperatorCreationException
{
TimeStampToken token;
try
{
token = this.getTimeStampToken(timeStamps[0]);
TimeStampTokenInfo info = token.getTimeStampInfo();
ASN1ObjectIdentifier algOID = info.getMessageImprintAlgOID();
DigestCalculator calc = calculatorProvider.get(new AlgorithmIdentifier(algOID));
initialiseMessageImprintDigestCalculator(calc);
return calc;
}
catch (CMSException e)
{
throw new OperatorCreationException("unable to extract algorithm ID: " + e.getMessage(), e);
}
}
示例2: matchData
import org.bouncycastle.tsp.TimeStampTokenInfo; //导入依赖的package包/类
/**
* Checks if the {@code TimeStampToken} matches the signed data.
*
* @param data
* the array of {@code byte} representing the timestamped data
* @return true if the data is verified by the TimeStampToken
*/
public boolean matchData(final byte[] data) {
try {
processed = true;
messageImprintData = data != null;
final TimeStampTokenInfo timeStampInfo = timeStamp.getTimeStampInfo();
final ASN1ObjectIdentifier hashAlgorithm = timeStampInfo.getHashAlgorithm().getAlgorithm();
final DigestAlgorithm digestAlgorithm = DigestAlgorithm.forOID(hashAlgorithm.getId());
final byte[] computedDigest = DSSUtils.digest(digestAlgorithm, data);
final byte[] timestampDigest = timeStampInfo.getMessageImprintDigest();
messageImprintIntact = Arrays.equals(computedDigest, timestampDigest);
if (!messageImprintIntact) {
LOG.error("Computed digest ({}) on the extracted data from the document : {}", digestAlgorithm, Utils.toHex(computedDigest));
LOG.error("Digest present in TimestampToken: {}", Utils.toHex(timestampDigest));
LOG.error("Digest in TimestampToken matches digest of extracted data from document: {}", messageImprintIntact);
}
} catch (DSSException e) {
messageImprintIntact = false;
}
return messageImprintIntact;
}
示例3: compareDigest
import org.bouncycastle.tsp.TimeStampTokenInfo; //导入依赖的package包/类
private void compareDigest(TimeStampToken timeStampToken, byte[] digest)
throws ImprintDigestInvalidException
{
TimeStampTokenInfo info = timeStampToken.getTimeStampInfo();
byte[] tsrMessageDigest = info.getMessageImprintDigest();
if (!Arrays.areEqual(digest, tsrMessageDigest))
{
throw new ImprintDigestInvalidException("hash calculated is different from MessageImprintDigest found in TimeStampToken", timeStampToken);
}
}