()
| 411 | } |
| 412 | |
| 413 | func (m *RegistrySQL) FlowCipher() *aead.XChaCha20Poly1305 { |
| 414 | if m.flowc == nil { |
| 415 | m.flowc = aead.NewXChaCha20Poly1305(m.Config()) |
| 416 | } |
| 417 | return m.flowc |
| 418 | } |
| 419 | |
| 420 | func (m *RegistrySQL) CookieStore(ctx context.Context) (sessions.Store, error) { |
| 421 | var keys [][]byte |
nothing calls this directly
no test coverage detected