Skip to content

Instantly share code, notes, and snippets.

@GaetanoPiazzolla
Created July 26, 2021 18:55
Show Gist options
  • Save GaetanoPiazzolla/c8ed3355d996c99a8641295df96ba82c to your computer and use it in GitHub Desktop.
Save GaetanoPiazzolla/c8ed3355d996c99a8641295df96ba82c to your computer and use it in GitHub Desktop.
import COSE.Encrypt0Message;
import COSE.Message;
import com.google.iot.cbor.CborMap;
// ..
Message a = Encrypt0Message.DecodeFromBytes(outputStream.toByteArray());
CborMap cborMap = CborMap.createFromCborByteArray(a.GetContent());
System.out.println(cborMap.toString(2));
// ..
@GaetanoPiazzolla
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment