gittuf/internal/testartifacts/gpg.go
Aditya Sirish 03159de27f
*: Centralize test artifacts
Signed-off-by: Aditya Sirish <aditya@saky.in>
2024-01-15 00:23:47 -05:00

17 lines
330 B
Go

// SPDX-License-Identifier: Apache-2.0
package artifacts
import _ "embed"
//go:embed testdata/keys/gpg/1.pub.asc
var GPGKey1Public []byte
//go:embed testdata/keys/gpg/1.asc
var GPGKey1Private []byte
//go:embed testdata/keys/gpg/2.pub.asc
var GPGKey2Public []byte
//go:embed testdata/keys/gpg/2.asc
var GPGKey2Private []byte