Giter Site home page Giter Site logo

Comments (3)

raindust avatar raindust commented on June 12, 2024

By the way, I used to parse AttestationDoc use the try_get_cose_sign method mentioned above like:

                use aws_nitro_enclaves_cose::crypto::Openssl;
                use aws_nitro_enclaves_nsm_api::api::AttestationDoc;

                let cose = try_get_cose_sign(document).unwrap();
		let payload = cose.get_payload::<Openssl>(None)?;
		let doc = AttestationDoc::from_binary(payload.as_slice())?;

Is the rest of the parsing logic still working?

from aws-nitro-enclaves-cose.

petreeftime avatar petreeftime commented on June 12, 2024

I'll take a look, it should still be working pretty much the same.

from aws-nitro-enclaves-cose.

raindust avatar raindust commented on June 12, 2024

First I request an attestation document like https://github.com/aws/aws-nitro-enclaves-nsm-api/blob/main/nsm-test/src/bin/nsm-check.rs#L344-L360 into the variable document.

Then if I try to parse the document like the following:

        use aws_nitro_enclaves_cose::CoseSign1;

        fn try_get_cose_sign(document: &[u8]) -> Option<CoseSign1> {
		if let Ok(cose) = CoseSign1::from_bytes(document) {
			debug!("CoseSign1 is untagged");
			return Some(cose);
		}
		if let Ok(cose) = CoseSign1::from_bytes_tagged(document) {
			debug!("CoseSign1 is tagged");
			return Some(cose);
		}
		None
	}

if I call try_get_cose_sign the result is None (the same logic worked about 1 year ago)

It's a bug in my app that wrapped the document and didn't unwrap it after transferring, sorry about that, and thanks for your attention.

from aws-nitro-enclaves-cose.

Related Issues (12)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.