use of com.axelor.apps.account.ebics.schema.h003.PubKeyValueType in project axelor-open-suite by axelor.
the class EbicsXmlFactory method createAuthenticationPubKeyInfoType.
/**
* Creates a new <code>AuthenticationPubKeyInfoType</code> XML object
*
* @param authenticationVersion the authentication version
* @param pubKeyValue the <code>com.axelor.apps.account.ebics.schema.h003.PubKeyValueType</code>
* element
* @param x509Data the <code>X509DataType</code> element
* @return the <code>AuthenticationPubKeyInfoType</code> XML object
*/
public static AuthenticationPubKeyInfoType createAuthenticationPubKeyInfoType(String authenticationVersion, com.axelor.apps.account.ebics.schema.h003.PubKeyValueType pubKeyValue, X509DataType x509Data) {
AuthenticationPubKeyInfoType newAuthenticationPubKeyInfoType = AuthenticationPubKeyInfoType.Factory.newInstance();
newAuthenticationPubKeyInfoType.setAuthenticationVersion(authenticationVersion);
newAuthenticationPubKeyInfoType.setX509Data(x509Data);
newAuthenticationPubKeyInfoType.setPubKeyValue(pubKeyValue);
return newAuthenticationPubKeyInfoType;
}
use of com.axelor.apps.account.ebics.schema.h003.PubKeyValueType in project axelor-open-suite by axelor.
the class EbicsXmlFactory method createPubKeyValueType.
/**
* Creates a new <code>PubKeyValueType</code> XML object
*
* @param rsaKeyValue the <code>rsaKeyValue</code> element
* @param timeStamp the current time stamp
* @return the <code>PubKeyValueType</code> XML object
*/
public static PubKeyValueType createPubKeyValueType(RSAKeyValueType rsaKeyValue, Calendar timeStamp) {
PubKeyValueType newPubKeyValueType = PubKeyValueType.Factory.newInstance();
newPubKeyValueType.setRSAKeyValue(rsaKeyValue);
newPubKeyValueType.setTimeStamp(timeStamp);
return newPubKeyValueType;
}
use of com.axelor.apps.account.ebics.schema.h003.PubKeyValueType in project axelor-open-suite by axelor.
the class EbicsXmlFactory method createEncryptionPubKeyInfoType.
/**
* Creates a new <code>EncryptionPubKeyInfoType</code> XML object
*
* @param encryptionVersion the encryption version
* @param pubKeyValue the <code>com.axelor.apps.account.ebics.schema.h003.PubKeyValueType</code>
* element
* @param x509Data the <code>X509DataType</code> element
* @return the <code>EncryptionPubKeyInfoType</code> XML object
*/
public static EncryptionPubKeyInfoType createEncryptionPubKeyInfoType(String encryptionVersion, com.axelor.apps.account.ebics.schema.h003.PubKeyValueType pubKeyValue, X509DataType x509Data) {
EncryptionPubKeyInfoType newEncryptionPubKeyInfoType = EncryptionPubKeyInfoType.Factory.newInstance();
newEncryptionPubKeyInfoType.setEncryptionVersion(encryptionVersion);
newEncryptionPubKeyInfoType.setX509Data(x509Data);
newEncryptionPubKeyInfoType.setPubKeyValue(pubKeyValue);
return newEncryptionPubKeyInfoType;
}
use of com.axelor.apps.account.ebics.schema.h003.PubKeyValueType in project axelor-open-suite by axelor.
the class HIARequestOrderDataElement method build.
@Override
public void build() {
HIARequestOrderDataType request;
AuthenticationPubKeyInfoType authenticationPubKeyInfo;
EncryptionPubKeyInfoType encryptionPubKeyInfo;
PubKeyValueType encryptionPubKeyValue;
X509DataType encryptionX509Data = null;
RSAKeyValueType encryptionRsaKeyValue;
PubKeyValueType authPubKeyValue;
X509DataType authX509Data = null;
RSAKeyValueType authRsaKeyValue;
EbicsCertificate certificate = session.getUser().getE002Certificate();
encryptionX509Data = EbicsXmlFactory.createX509DataType(session.getUser().getDn(), certificate.getCertificate());
// Include Certificate issuer and serial ?
// encryptionX509Data = EbicsXmlFactory.createX509DataType(session.getUser().getDn(),
// certificate.getCertificate(), certificate.getIssuer(), new
// BigInteger(certificate.getSerial(), 16));
encryptionRsaKeyValue = EbicsXmlFactory.createRSAKeyValueType(new BigInteger(certificate.getPublicKeyExponent(), 16).toByteArray(), new BigInteger(certificate.getPublicKeyModulus(), 16).toByteArray());
encryptionPubKeyValue = EbicsXmlFactory.createH003PubKeyValueType(encryptionRsaKeyValue, Calendar.getInstance());
encryptionPubKeyInfo = EbicsXmlFactory.createEncryptionPubKeyInfoType("E002", encryptionPubKeyValue, encryptionX509Data);
certificate = session.getUser().getX002Certificate();
authX509Data = EbicsXmlFactory.createX509DataType(session.getUser().getDn(), certificate.getCertificate());
// Include Certificate issuer and serial ?
// authX509Data = EbicsXmlFactory.createX509DataType(session.getUser().getDn(),
// certificate.getCertificate(), certificate.getIssuer(), new
// BigInteger(certificate.getSerial(), 16));
authRsaKeyValue = EbicsXmlFactory.createRSAKeyValueType(new BigInteger(certificate.getPublicKeyExponent(), 16).toByteArray(), new BigInteger(certificate.getPublicKeyModulus(), 16).toByteArray());
authPubKeyValue = EbicsXmlFactory.createH003PubKeyValueType(authRsaKeyValue, Calendar.getInstance());
authenticationPubKeyInfo = EbicsXmlFactory.createAuthenticationPubKeyInfoType("X002", authPubKeyValue, authX509Data);
request = EbicsXmlFactory.createHIARequestOrderDataType(authenticationPubKeyInfo, encryptionPubKeyInfo, session.getUser().getEbicsPartner().getPartnerId(), session.getUser().getUserId());
document = EbicsXmlFactory.createHIARequestOrderDataDocument(request);
}
use of com.axelor.apps.account.ebics.schema.h003.PubKeyValueType in project axelor-open-suite by axelor.
the class SignaturePubKeyOrderDataElement method build.
@Override
public void build() throws AxelorException {
SignaturePubKeyInfoType signaturePubKeyInfo;
X509DataType x509Data;
RSAKeyValueType rsaKeyValue;
PubKeyValueType pubKeyValue;
SignaturePubKeyOrderDataType signaturePubKeyOrderData;
EbicsCertificate certificate = session.getUser().getA005Certificate();
System.out.println("Certificate : " + new String(certificate.getCertificate()));
System.out.println("Certificate size : " + certificate.getCertificate().length);
EbicsCertificate ebicsEertificate = session.getUser().getA005Certificate();
// Include certificate issuer and serial (certificate information)
// x509Data = EbicsXmlFactory.createX509DataType(ebicsEertificate.getSubject(), certEncoded,
// ebicsEertificate.getIssuer(), new BigInteger(ebicsEertificate.getSerial(), 16));
x509Data = EbicsXmlFactory.createX509DataType(ebicsEertificate.getSubject(), ebicsEertificate.getCertificate());
rsaKeyValue = EbicsXmlFactory.createRSAKeyValueType(new BigInteger(ebicsEertificate.getPublicKeyExponent(), 16).toByteArray(), new BigInteger(ebicsEertificate.getPublicKeyModulus(), 16).toByteArray());
pubKeyValue = EbicsXmlFactory.createPubKeyValueType(rsaKeyValue, Calendar.getInstance());
signaturePubKeyInfo = EbicsXmlFactory.createSignaturePubKeyInfoType(x509Data, pubKeyValue, "A005");
signaturePubKeyOrderData = EbicsXmlFactory.createSignaturePubKeyOrderData(signaturePubKeyInfo, session.getUser().getEbicsPartner().getPartnerId(), session.getUser().getUserId());
document = EbicsXmlFactory.createSignaturePubKeyOrderDataDocument(signaturePubKeyOrderData);
}
Aggregations