All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.authlete.mdoc.DigestIDsEntry Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2023 Authlete, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.authlete.mdoc;


import com.authlete.cbor.CBORByteArray;
import com.authlete.cbor.CBORInteger;
import com.authlete.cbor.CBORPair;


/**
 * An entry of {@link DigestIDs}; A pair of a digest ID and a digest value.
 *
 * 

* For details, see ISO/IEC 18013-5:2021, 9.1.2.4 Signing method and structure for MSO. *

* *

Definition

* *
 * DigestIDs = {
 *     + DigestID => Digest
 * }
 *
 * DigestID = uint
 * Digest = bstr
 * 
* *

* The input for the digest calculation is an {@link IssuerSignedItemBytes} element. *

* * @since 1.5 * * @see ISO/IEC 18013-5:2021 * * @see ValueDigests * * @see DigestIDs */ public class DigestIDsEntry extends CBORPair { public DigestIDsEntry(CBORInteger digestID, CBORByteArray digest) { super(digestID, digest); } public DigestIDsEntry(CBORInteger digestID, byte[] digest) { this(digestID, new CBORByteArray(digest)); } public DigestIDsEntry(int digestID, CBORByteArray digest) { this(new CBORInteger(digestID), digest); } public DigestIDsEntry(int digestID, byte[] digest) { this(new CBORInteger(digestID), new CBORByteArray(digest)); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy