/third_party/node/deps/npm/node_modules/@sigstore/sign/dist/bundler/ |
H A D | dsse.js | 27 // DSSE requires the artifact to be pre-encoded with the payload type 29 async prepare(artifact) { 30 const a = artifactDefaults(artifact); 33 // Packages the artifact and signature into a DSSE bundle 34 async package(artifact, signature) { 35 return (0, bundle_1.toDSSEBundle)(artifactDefaults(artifact), signature); 39 // Defaults the artifact type to an empty string if not provided 40 function artifactDefaults(artifact) { 42 ...artifact, 43 type: artifact [all...] |
H A D | base.js | 5 // provides a the basic wokflow for signing and witnessing an artifact. 13 // Executes the signing/witnessing process for the given artifact. 14 async create(artifact) { 15 const signature = await this.prepare(artifact).then((blob) => this.signer.sign(blob)); 16 const bundle = await this.package(artifact, signature); 34 // artifact. The returned buffer will be signed by the signer. The default 35 // implementation simply returns the artifact data. 36 async prepare(artifact) { 37 return artifact.data;
|
H A D | bundle.js | 46 function toMessageSignatureBundle(artifact, signature) { 47 const digest = util_1.crypto.hash(artifact.data); 59 function toDSSEBundle(artifact, signature) { 61 artifact: artifact.data, 62 artifactType: artifact.type,
|
/third_party/libabigail/tools/ |
H A D | abilint.cc | 109 /// A tree node representing the "use" relation between an artifact A 113 /// So the node contains the artifact A and a vector children nodes 121 /// The artifact contained in this node. 122 type_or_decl_base* artifact = nullptr; member 124 /// actually use the 'artifact' above. In other words, the 125 /// 'artifact" data member above is a sub-type of each artifact 135 /// @param the artifact to consider. 137 : artifact (t) in artifact_use_relation_tree() 143 /// Add a user artifact nod 382 type_or_decl_base* artifact = artifact_use_tree.artifact; emit_artifact_use_trace() local [all...] |
/third_party/node/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/ |
H A D | sigstore_verification.js | 237 : isSet(object.artifact) 238 ? { $case: "artifact", artifact: Buffer.from(bytesFromBase64(object.artifact)) } 245 message.data?.$case === "artifact" && 246 (obj.artifact = message.data?.artifact !== undefined ? base64FromBytes(message.data?.artifact) : undefined); 255 artifact: undefined, 266 artifact [all...] |
/third_party/node/deps/npm/node_modules/@sigstore/verify/dist/bundle/ |
H A D | index.js | 7 function toSignedEntity(bundle, artifact) { 23 signature: signatureContent(bundle, artifact), 30 function signatureContent(bundle, artifact) { 35 return new message_1.MessageSignatureContent(bundle.content.messageSignature, artifact);
|
/third_party/node/deps/npm/node_modules/@sigstore/bundle/dist/ |
H A D | build.js | 54 payload: options.artifact,
|
/third_party/libabigail/include/ |
H A D | abg-fwd.h | 1048 debug(const type_or_decl_base* artifact); 1051 debug(const type_base* artifact); 1054 debug(const decl_base* artifact);
|
H A D | abg-ir.h | 458 /// ABI artifact. 460 /// @param artifact the ABI artifact to hash. 463 /// artifact. 465 operator()(const type_or_decl_base *artifact) const in operator ()() 467 string repr = get_pretty_representation(artifact); in operator ()() 473 /// ABI artifact. 475 /// @param artifact the ABI artifact to hash. 478 /// artifact [all...] |
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/ |
H A D | TestSuite.cpp | 620 const js::Value &artifact = artifactMember.value; in GetTestArtifactsFromJSON() local 621 if (!artifact.IsArray()) in GetTestArtifactsFromJSON() 627 const js::Value::ConstArray &artifactArray = artifact.GetArray(); in GetTestArtifactsFromJSON()
|
/third_party/libabigail/src/ |
H A D | abg-dwarf-reader.cc | 1802 // offset of a decl die to its corresponding decl artifact. 1806 // offset of a type die to its corresponding type artifact. 3185 /// Lookup the artifact that was built to represent a type that has 3190 /// artifact using the functions associate_die_to_decl or 3200 /// @return the type artifact found. 3204 type_or_decl_base_sptr artifact = in lookup_type_artifact_from_die() local 3206 if (function_decl_sptr fn = is_function_decl(artifact)) in lookup_type_artifact_from_die() 3208 return artifact; in lookup_type_artifact_from_die() 3211 /// Lookup the artifact that was built to represent a type or a 3216 /// artifact usin 3696 type_or_decl_base_sptr artifact = lookup_type_from_die() local [all...] |
H A D | abg-ir.cc | 3912 /// Getter of the canonical type of the artifact designated by a 3964 // The location of an artifact as seen from its input by the 3965 // artifact reader. This might be different from the source 3966 // location advertised by the original emitter of the artifact 3969 // Flags if the current ABI artifact is artificial (i.e, *NOT* 3976 /// @param e the environment in which the ABI artifact was created. 3979 /// instance of ABI artifact. 4042 /// @param the environment the current ABI artifact is constructed 4081 /// an ABI artifact. 4084 /// artifact 9295 get_debug_representation(const type_or_decl_base* artifact) get_debug_representation() argument 9466 debug(const type_or_decl_base* artifact) debug() argument 9483 debug(const type_base* artifact) debug() argument 9500 debug(const decl_base* artifact) debug() argument 9536 odr_is_relevant(const type_or_decl_base& artifact) odr_is_relevant() argument [all...] |