# Superlogin utilities > Work in progress, too early to use. This project targets to provide command set of multiplatform tools to faciliate restore access with non-recoverable passwords by providing a backup `secret` string as the only way to reset the password. This technology is required in the systems where user data are not disclosed to anybody else, as an attempt to allow lost password reset by mean of a `secret` string that could be kept somewhere in a safe place. It allows password and protected content updates to be recoverable with a `secret`. It also contains useful tools for this type of application: - `BackgroundKeyGeneretor` allows to accumulate the entropy from user events and perform ahead private key generation in the background (also in JS). - `DerivedKeys` simplify processing passwords in a safe and smart manner. - `AccessControlObject` to contain recoverable password-protected data with a backup `secret` word to restore access. ## Setup Currently, complie it and publish into mavenLocal, and use from there. Soon will be published to some public maven repo. ## Usage with ktor server Use module for initialization like this: ~~~ fun Application.testServerModule() { superloginServer(TestApiServer(), { TestSession() }) { // This is a sample of your porvate API implementation: on(api.loginName) { println("login name called. now we have $currentLoginName : $superloginData") currentLoginName } } } ~~~ Nothe that your test session should inhert from and implement all abstract methods of `SLServerSession` abstract class to work properly. Now you can just use the module in your ktor server initialization: ~~~ embeddedServer(Netty, port = 8082, module = Application::testServerModule).start() ~~~ Of course you can initialize superlogin server separately. In any case see autodocs for `superloginServer()` function. On the client side it could look like: ~~~ val api = TestApiServer() val slc = SuperloginClient(client) var rt = slc.register("foo", "passwd", TestData("bar!")) ~~~ See autodocs for `SuperloginClient` for more. ## License Will be published under MIT as soon as first RC will be published.