()
| 40 | ) |
| 41 | |
| 42 | func randomAPIKeyParts() (id string, secret string, hashedSecret []byte) { |
| 43 | id, _ = cryptorand.String(10) |
| 44 | secret, hashedSecret, _ = apikey.GenerateSecret(22) |
| 45 | return id, secret, hashedSecret |
| 46 | } |
| 47 | |
| 48 | func TestAPIKey(t *testing.T) { |
| 49 | t.Parallel() |
no test coverage detected