Package io.fathom.cloud.protobuf.IdentityModel

Examples of io.fathom.cloud.protobuf.IdentityModel.SecretKeyType


        return ret;
    }

    public ByteString buildAuthChallenge(UserData user, CredentialData credential, ClientCertificate clientCertificate) {
        for (SecretKeyData secretKey : user.getSecretStore().getSecretKeyList()) {
            SecretKeyType type = secretKey.getType();
            if (type != SecretKeyType.ENCRYPTED_WITH_CREDENTIAL) {
                continue;
            }

            if (!Objects.equal(secretKey.getCredentialKey(), credential.getKey())) {
View Full Code Here

TOP

Related Classes of io.fathom.cloud.protobuf.IdentityModel.SecretKeyType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.