Search in sources :

Example 1 with Asn1ParseResult

use of org.apache.kerby.asn1.parse.Asn1ParseResult in project webauthn4j by webauthn4j.

the class CertificateUtil method extractSubjectKeyIdentifier.

@NonNull
public static byte[] extractSubjectKeyIdentifier(X509Certificate certificate) {
    try {
        byte[] publicKeyEncoded = certificate.getPublicKey().getEncoded();
        Asn1ParseResult result = Asn1Parser.parse(ByteBuffer.wrap(publicKeyEncoded));
        List<Asn1ParseResult> children = ((Asn1Container) result).getChildren();
        Asn1BitString asn1BitString = new Asn1BitString();
        asn1BitString.decode(children.get(1));
        byte[] publicKeyBytes = asn1BitString.getValue();
        return MessageDigestUtil.createMessageDigest("SHA-1").digest(publicKeyBytes);
    } catch (IOException e) {
        throw new UncheckedIOException(e);
    }
}
Also used : Asn1ParseResult(org.apache.kerby.asn1.parse.Asn1ParseResult) Asn1Container(org.apache.kerby.asn1.parse.Asn1Container) UncheckedIOException(java.io.UncheckedIOException) Asn1BitString(org.apache.kerby.asn1.type.Asn1BitString) IOException(java.io.IOException) UncheckedIOException(java.io.UncheckedIOException) NonNull(org.checkerframework.checker.nullness.qual.NonNull)

Example 2 with Asn1ParseResult

use of org.apache.kerby.asn1.parse.Asn1ParseResult in project jans by JanssenProject.

the class AppleAttestationProcessor method getExtension.

/*-
	[
	   {
	       "type": "OBJECT_IDENTIFIER",
	       "data": "1.2.840.113635.100.8.2"
	   },
	   {
	       "type": "OCTET_STRING",
	       "data": [
	           {
	               "type": "SEQUENCE",
	               "data": [
	                   {
	                       "type": "[1]",
	                       "data": [
	                           {
	                               "type": "OCTET_STRING",
	                               "data": {
	                                   "type": "Buffer",
	                                   "data": [92, 219, 157, 144, 115, 64, 69, 91, 99, 115, 230, 117, 43, 115, 252, 54, 132, 83, 96, 34, 21, 250, 234, 187, 124, 22, 95, 11, 173, 172, 7, 204]
	                               }
	                           }
	                       ]
	                   }
	               ]
	           }
	       ]
	   }
	]
	*/
public byte[] getExtension(X509Certificate attestationCert) {
    byte[] extensionValue = attestationCert.getExtensionValue(KEY_DESCRIPTION_OID);
    byte[] extracted;
    try {
        Asn1OctetString extensionEnvelope = new Asn1OctetString();
        extensionEnvelope.decode(extensionValue);
        extensionEnvelope.getValue();
        byte[] extensionEnvelopeValue = extensionEnvelope.getValue();
        Asn1Container container = (Asn1Container) Asn1Parser.parse(ByteBuffer.wrap(extensionEnvelopeValue));
        Asn1ParseResult firstElement = container.getChildren().get(0);
        Asn1OctetString octetString = new Asn1OctetString();
        octetString.decode(firstElement);
        extracted = octetString.getValue();
        return extracted;
    } catch (IOException | RuntimeException e) {
        throw new AttestationException("Failed to extract nonce from Apple anonymous attestation statement.");
    }
}
Also used : Asn1ParseResult(org.apache.kerby.asn1.parse.Asn1ParseResult) AttestationException(io.jans.fido2.exception.AttestationException) Asn1Container(org.apache.kerby.asn1.parse.Asn1Container) IOException(java.io.IOException) Asn1OctetString(org.apache.kerby.asn1.type.Asn1OctetString)

Example 3 with Asn1ParseResult

use of org.apache.kerby.asn1.parse.Asn1ParseResult in project webauthn4j by webauthn4j.

the class KeyDescriptionValidator method getIntegerFromAsn1.

@Nullable
private BigInteger getIntegerFromAsn1(Asn1ParseResult asn1Value) throws IOException {
    if (asn1Value == null) {
        return null;
    }
    if (!asn1Value.isPrimitive()) {
        throw new BadAttestationStatementException(String.format("ASN1Integer is expected. Found %s instead.", asn1Value.getClass().getName()));
    }
    Asn1Integer value = new Asn1Integer();
    value.decode(asn1Value);
    return value.getValue();
}
Also used : BadAttestationStatementException(com.webauthn4j.validator.exception.BadAttestationStatementException) Asn1Integer(org.apache.kerby.asn1.type.Asn1Integer) Nullable(org.checkerframework.checker.nullness.qual.Nullable)

Example 4 with Asn1ParseResult

use of org.apache.kerby.asn1.parse.Asn1ParseResult in project webauthn4j by webauthn4j.

the class AppleAnonymousAttestationStatementValidator method validateNonce.

private void validateNonce(@NonNull CoreRegistrationObject registrationObject) {
    AppleAnonymousAttestationStatement attestationStatement = (AppleAnonymousAttestationStatement) registrationObject.getAttestationObject().getAttestationStatement();
    byte[] nonce = getNonce(registrationObject);
    byte[] extensionValue = attestationStatement.getX5c().getEndEntityAttestationCertificate().getCertificate().getExtensionValue("1.2.840.113635.100.8.2");
    byte[] extracted;
    try {
        Asn1OctetString extensionEnvelope = new Asn1OctetString();
        extensionEnvelope.decode(extensionValue);
        extensionEnvelope.getValue();
        byte[] extensionEnvelopeValue = extensionEnvelope.getValue();
        Asn1Container container = (Asn1Container) Asn1Parser.parse(ByteBuffer.wrap(extensionEnvelopeValue));
        Asn1ParseResult firstElement = container.getChildren().get(0);
        Asn1OctetString octetString = new Asn1OctetString();
        octetString.decode(firstElement);
        extracted = octetString.getValue();
    } catch (IOException | RuntimeException e) {
        throw new BadAttestationStatementException("Failed to extract nonce from Apple anonymous attestation statement.", e);
    }
    // there is no need to prevent timing attack and it is OK to use `Arrays.equals` instead of `MessageDigest.isEqual` here.
    if (!Arrays.equals(extracted, nonce)) {
        throw new BadAttestationStatementException("nonce doesn't match.");
    }
}
Also used : Asn1ParseResult(org.apache.kerby.asn1.parse.Asn1ParseResult) Asn1Container(org.apache.kerby.asn1.parse.Asn1Container) BadAttestationStatementException(com.webauthn4j.validator.exception.BadAttestationStatementException) IOException(java.io.IOException) Asn1OctetString(org.apache.kerby.asn1.type.Asn1OctetString) AppleAnonymousAttestationStatement(com.webauthn4j.data.attestation.statement.AppleAnonymousAttestationStatement)

Aggregations

IOException (java.io.IOException)3 Asn1Container (org.apache.kerby.asn1.parse.Asn1Container)3 Asn1ParseResult (org.apache.kerby.asn1.parse.Asn1ParseResult)3 BadAttestationStatementException (com.webauthn4j.validator.exception.BadAttestationStatementException)2 Asn1OctetString (org.apache.kerby.asn1.type.Asn1OctetString)2 AppleAnonymousAttestationStatement (com.webauthn4j.data.attestation.statement.AppleAnonymousAttestationStatement)1 AttestationException (io.jans.fido2.exception.AttestationException)1 UncheckedIOException (java.io.UncheckedIOException)1 Asn1BitString (org.apache.kerby.asn1.type.Asn1BitString)1 Asn1Integer (org.apache.kerby.asn1.type.Asn1Integer)1 NonNull (org.checkerframework.checker.nullness.qual.NonNull)1 Nullable (org.checkerframework.checker.nullness.qual.Nullable)1