com.itextpdf.bouncycastlefips.tsp.TimeStampTokenInfoBCFips Maven / Gradle / Ivy
/*
This file is part of the iText (R) project.
Copyright (c) 1998-2023 Apryse Group NV
Authors: Apryse Software.
This program is offered under a commercial and under the AGPL license.
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
AGPL licensing:
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see .
*/
package com.itextpdf.bouncycastlefips.tsp;
import com.itextpdf.bouncycastlefips.asn1.tsp.TSTInfoBCFips;
import com.itextpdf.bouncycastlefips.asn1.x509.AlgorithmIdentifierBCFips;
import com.itextpdf.commons.bouncycastle.asn1.tsp.ITSTInfo;
import com.itextpdf.commons.bouncycastle.asn1.x509.IAlgorithmIdentifier;
import com.itextpdf.commons.bouncycastle.tsp.ITimeStampTokenInfo;
import java.io.IOException;
import java.util.Date;
import java.util.Objects;
import org.bouncycastle.tsp.TimeStampTokenInfo;
/**
* Wrapper class for {@link org.bouncycastle.tsp.TimeStampTokenInfo}.
*/
public class TimeStampTokenInfoBCFips implements ITimeStampTokenInfo {
private final TimeStampTokenInfo timeStampTokenInfo;
/**
* Creates new wrapper instance for {@link TimeStampTokenInfo}.
*
* @param timeStampTokenInfo {@link TimeStampTokenInfo} to be wrapped
*/
public TimeStampTokenInfoBCFips(TimeStampTokenInfo timeStampTokenInfo) {
this.timeStampTokenInfo = timeStampTokenInfo;
}
/**
* Gets actual org.bouncycastle object being wrapped.
*
* @return wrapped {@link TimeStampTokenInfo}.
*/
public TimeStampTokenInfo getTimeStampTokenInfo() {
return timeStampTokenInfo;
}
/**
* {@inheritDoc}
*/
@Override
public IAlgorithmIdentifier getHashAlgorithm() {
return new AlgorithmIdentifierBCFips(timeStampTokenInfo.getHashAlgorithm());
}
/**
* {@inheritDoc}
*/
@Override
public ITSTInfo toASN1Structure() {
return new TSTInfoBCFips(timeStampTokenInfo.toASN1Structure());
}
/**
* {@inheritDoc}
*/
@Override
public Date getGenTime() {
return timeStampTokenInfo.getGenTime();
}
/**
* {@inheritDoc}
*/
@Override
public byte[] getEncoded() throws IOException {
return timeStampTokenInfo.getEncoded();
}
/**
* Indicates whether some other object is "equal to" this one. Compares wrapped objects.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TimeStampTokenInfoBCFips that = (TimeStampTokenInfoBCFips) o;
return Objects.equals(timeStampTokenInfo, that.timeStampTokenInfo);
}
/**
* Returns a hash code value based on the wrapped object.
*/
@Override
public int hashCode() {
return Objects.hash(timeStampTokenInfo);
}
/**
* Delegates {@code toString} method call to the wrapped object.
*/
@Override
public String toString() {
return timeStampTokenInfo.toString();
}
}