Package se.digg.dgc.service
Interface DGCEncoder
-
- All Known Subinterfaces:
DGCBarcodeEncoder
- All Known Implementing Classes:
DefaultDGCBarcodeEncoder,DefaultDGCEncoder
public interface DGCEncoderService for creating Digital Covid Certificates.- Author:
- Martin Lindström (martin@idsec.se), Henrik Bengtsson (extern.henrik.bengtsson@digg.se), Henric Norlander (extern.henric.norlander@digg.se)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringencode(byte[] dcc, Instant expiration)Based on the CBOR encoded DCC payload and a expiration time, the method signs it, deflates it, and delivers it in Base45 encoding (with a HCERT header).Stringencode(DigitalCovidCertificate dcc, Instant expiration)Based on the DCC payload and a expiration time, the method encodes the payload to CBOR, signs it, deflates it, and delivers it in Base45 encoding (with a HCERT header).byte[]sign(byte[] dcc, Instant expiration)Given the CBOR-encoding of the DCC payload the method creates a CWT and signs it.byte[]sign(DigitalCovidCertificate dcc, Instant expiration)Given the DCC payload the method creates a CWT and signs it.
-
-
-
Method Detail
-
encode
String encode(DigitalCovidCertificate dcc, Instant expiration) throws DGCSchemaException, IOException, SignatureException
Based on the DCC payload and a expiration time, the method encodes the payload to CBOR, signs it, deflates it, and delivers it in Base45 encoding (with a HCERT header).- Parameters:
dcc- the contents of the DCCexpiration- the expiration of the DCC- Returns:
- the Base45 encoding of the signed DCC
- Throws:
DGCSchemaException- for DCC schema errorsIOException- for errors encoding data, for example CBOR related errorsSignatureException- errors concerning signing the DCC
-
encode
String encode(byte[] dcc, Instant expiration) throws IOException, SignatureException
Based on the CBOR encoded DCC payload and a expiration time, the method signs it, deflates it, and delivers it in Base45 encoding (with a HCERT header).- Parameters:
dcc- the contents of the DCC in its CBOR encodingexpiration- the expiration of the DCC- Returns:
- the Base45 encoding of the signed DCC
- Throws:
IOException- for errors encoding data, for example CBOR related errorsSignatureException- errors concerning signing the DCC
-
sign
byte[] sign(DigitalCovidCertificate dcc, Instant expiration) throws DGCSchemaException, IOException, SignatureException
Given the DCC payload the method creates a CWT and signs it.- Parameters:
dcc- the DCC payloadexpiration- the expiration time of the DCC- Returns:
- the CBOR encoding of the signed DCC (CWT)
- Throws:
DGCSchemaException- for DCC schema errorsIOException- for errors encoding data, for example CBOR related errorsSignatureException- errors concerning signing the DCC
-
sign
byte[] sign(byte[] dcc, Instant expiration) throws IOException, SignatureExceptionGiven the CBOR-encoding of the DCC payload the method creates a CWT and signs it.- Parameters:
dcc- the DCC payload in its CBOR encodingexpiration- the expiration of the DCC- Returns:
- the CBOR encoding of the signed DCC (CWT)
- Throws:
IOException- for errors encoding data, for example CBOR related errorsSignatureException- errors concerning signing the DCC
-
-