// SPDX-FileCopyrightText: 2023 Neal H. Walfield , Paul Schaub // // SPDX-License-Identifier: BSD-3-Clause package org.sequoia_pgp.wot.vectors import org.pgpainless.wot.network.Fingerprint /** * This test is similar to the `multiple-userids` tests, but the two * certifications are for the same User ID and key. This works if the * certifications have the same timestamp. * * There is also an old certification, which should be ignored. * * ``` * alice * 50/2 / | 70/1 \ old and ignored * \ | / 120/255 * bob * | 120/2 * carol * | 120 * dave * ``` */ class MultipleCertifications1Vectors: ArtifactVectors { val alice_fpr = Fingerprint("9219941467AA737C6EC1207959A2CEFC112C359A") val alice_uid = "" val bob_fpr = Fingerprint("72CAA0F0A4A020F5FA20CD8CB5CC04473AA88123") val bob_uid = "" // Certified by: 9219941467AA737C6EC1207959A2CEFC112C359A // Certified by: 9219941467AA737C6EC1207959A2CEFC112C359A // Certified by: 9219941467AA737C6EC1207959A2CEFC112C359A val carol_fpr = Fingerprint("853304031E7B0B116BBD0B398734F11945313904") val carol_uid = "" // Certified by: 72CAA0F0A4A020F5FA20CD8CB5CC04473AA88123 val dave_fpr = Fingerprint("4C77ABDBE4F855E0C3C7A7D549F6B2BFDA83E424") val dave_uid = "" // Certified by: 853304031E7B0B116BBD0B398734F11945313904 /** * A few moments after the network has been generated. */ val t0 = parseReferenceTime("2021-10-06 12:20:00 UTC") override fun getResourceName(): String { return "org/sequoia_pgp/wot/vectors/multiple-certifications-1.pgp" } }