| 106 | } |
| 107 | |
| 108 | type cryptFernet struct { |
| 109 | key *fernet.Key |
| 110 | ttl time.Duration |
| 111 | } |
| 112 | |
| 113 | func (alg *cryptFernet) parseConf(conf map[string]string) error { |
| 114 | keyStr, ok := conf["Key"] |
nothing calls this directly
no outgoing calls
no test coverage detected