SignedTufMeta.java
/*
* Copyright 2022 The Sigstore Authors.
*
* 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 dev.sigstore.tuf.model;
import com.google.gson.JsonElement;
import dev.sigstore.json.GsonSupplier;
import dev.sigstore.json.canonicalizer.JsonCanonicalizer;
import java.io.IOException;
import java.util.List;
import org.immutables.gson.Gson;
import org.immutables.value.Value.Derived;
import org.immutables.value.Value.Lazy;
/**
* Signed wrapper around {@link TufMeta}.
*
* @param <T> the {@code Role} appropriate {@code TufMeta}
*/
public interface SignedTufMeta<T extends TufMeta> {
/** List of signatures on the Role metadata. */
List<Signature> getSignatures();
/** The role metadata that has been signed. */
T getSignedMeta();
/** An internal helper to translate raw signed json to a useable type. */
@Derived
@Gson.Ignore
default T getSignedMeta(Class<T> type) {
return GsonSupplier.GSON.get().fromJson(getRawSignedMeta(), type);
}
/** The raw signed json, just verify signature over this to prevent loss of unknown fields */
@Gson.Named("signed")
JsonElement getRawSignedMeta();
@Lazy
default byte[] getCanonicalSignedBytes() throws IOException {
return new JsonCanonicalizer(GsonSupplier.GSON.get().toJson(getRawSignedMeta()))
.getEncodedUTF8();
}
}