MCPcopy
hub / github.com/getsops/sops / stringPointerToStringMap

Function stringPointerToStringMap

kms/keysource.go:478–487  ·  view source on GitHub ↗
(in map[string]*string)

Source from the content-addressed store, hash-verified

476}
477
478func stringPointerToStringMap(in map[string]*string) map[string]string {
479 var out = make(map[string]string)
480 for k, v := range in {
481 if v == nil {
482 continue
483 }
484 out[k] = *v
485 }
486 return out
487}

Callers 4

EncryptContextMethod · 0.85
DecryptContextMethod · 0.85
TestMasterKey_EncryptFunction · 0.85
TestMasterKey_DecryptFunction · 0.85

Calls

no outgoing calls

Tested by 2

TestMasterKey_EncryptFunction · 0.68
TestMasterKey_DecryptFunction · 0.68