I hereby claim:
- I am robotdan on github.
- I am robotdan (https://keybase.io/robotdan) on keybase.
- I have a public key whose fingerprint is 0499 9BC2 9C8C 780F 621C AD2A 9C81 4FCA 8378 1BFB
To claim this, I am signing this object:
| class FusionAuthPasswordChecker { | |
| #minLength; | |
| #maxLength; | |
| #passwordField; | |
| #requireMixedCase; | |
| #requireNonAlpha; | |
| #requireNumber; | |
| #timer; | |
| constructor(minLength, maxLength, requireMixedCase, requireNonAlpha, requireNumber) { |
| /* | |
| * Copyright (c) 2021, Inversoft Inc., All Rights Reserved | |
| */ | |
| package com.inversoft.validator; | |
| /** | |
| * @author Daniel DeGroff | |
| */ | |
| public class EmailValidator { |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration scan="true" scanPeriod="60 seconds"> | |
| <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | |
| <!-- encoders are assigned the type | |
| ch.qos.logback.classic.encoder.PatternLayoutEncoder by default --> | |
| <encoder> | |
| <pattern>%d{"MMM dd, yyyy h:mm:ss.SSS a"} %-5level %logger{75} - %msg%n</pattern> | |
| </encoder> | |
| </appender> |
| package com.inversoft.util; | |
| import java.security.SecureRandom; | |
| import java.util.Base64; | |
| /** | |
| * @author Daniel DeGroff | |
| */ | |
| public class SecurityTools { |
I hereby claim:
To claim this, I am signing this object:
| /* Authenticate a User */ | |
| ClientResponse<LoginResponse, Errors> response = client.Login( | |
| new LoginRequest(new Guid("00000000-0000-0000-0000-00000000002a"), "[email protected]", null, "secret"), null); | |
| User user = response.successResponse.user; | |
| /* Retrieve User by Email Address */ | |
| ClientResponse<UserResponse, Errors> response = client.RetrieveUserByEmail("[email protected]"); | |
| User user = response.successResponse.user; |