ScryptIdentity is a password-based identity.
| 113 | |
| 114 | // ScryptIdentity is a password-based identity. |
| 115 | type ScryptIdentity struct { |
| 116 | password []byte |
| 117 | maxWorkFactor int |
| 118 | } |
| 119 | |
| 120 | var _ Identity = &ScryptIdentity{} |
| 121 |
nothing calls this directly
no outgoing calls
no test coverage detected