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

eu.europa.ec.eudi.sdjwt.DecoyGen.kt Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
/*
 * Copyright (c) 2023 European Commission
 *
 * 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
 *
 *     http://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 eu.europa.ec.eudi.sdjwt

/**
 * Generates decoy [DisclosureDigest]
 */
fun interface DecoyGen {

    /**
     * Given a [hashingAlgorithm] method produces a decoy [DisclosureDigest]
     * @param hashingAlgorithm the algorithm to be used for producing the decoy
     * @return a decoy [DisclosureDigest]
     */
    fun gen(hashingAlgorithm: HashAlgorithm): DisclosureDigest

    /**
     * Produces a series of decoy [DisclosureDigest]
     * @param hashingAlgorithm the algorithm to be used for producing the decoy
     * @param numOfDecoys the number of decoys to produce
     * @return a series of decoy [DisclosureDigest]
     */
    fun gen(hashingAlgorithm: HashAlgorithm, numOfDecoys: Int): Set {
        return if (numOfDecoys < 1) emptySet()
        else (1..numOfDecoys).map { gen(hashingAlgorithm) }.toSet()
    }

    companion object {
        /**
         * Default implementation of [DecoyGen] which produces random decoy [DisclosureDigest]
         */
        val Default: DecoyGen by lazy {
            DecoyGen { hashingAlgorithm ->
                val numberOfBytes = 12..24
                val saltProvider = SaltProvider.randomSaltProvider(numberOfBytes.random())
                val random = saltProvider.salt()
                DisclosureDigest.digest(hashingAlgorithm, random).getOrThrow()
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy