(data []byte)
| 44 | } |
| 45 | |
| 46 | func sum256hex(data []byte) string { |
| 47 | hash := sha256.New() |
| 48 | hash.Write(data) |
| 49 | return hex.EncodeToString(hash.Sum(nil)) |
| 50 | } |
| 51 | |
| 52 | func TestGetSeedSignature(t *testing.T) { |
| 53 | accessKeyID := "AKIAIOSFODNN7EXAMPLE" |
no test coverage detected