Interface PasswordLeakVerificationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PasswordLeakVerification
,PasswordLeakVerification.Builder
public interface PasswordLeakVerificationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCanonicalizedUsername()
Optional.com.google.protobuf.ByteString
getCanonicalizedUsernameBytes()
Optional.boolean
getCredentialsLeaked()
Output only.com.google.protobuf.ByteString
getHashedUserCredentials()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getHashedUserCredentials
com.google.protobuf.ByteString getHashedUserCredentials()
Optional. Scrypt hash of the username+password that the customer wants to verify against a known password leak.
bytes hashed_user_credentials = 1 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The hashedUserCredentials.
-
getCredentialsLeaked
boolean getCredentialsLeaked()
Output only. Whether or not the user's credentials are present in a known leak.
bool credentials_leaked = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The credentialsLeaked.
-
getCanonicalizedUsername
String getCanonicalizedUsername()
Optional. The username part of the user credentials for which we want to trigger a leak check in canonicalized form. This is the same data used to create the hashed_user_credentials on the customer side.
string canonicalized_username = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The canonicalizedUsername.
-
getCanonicalizedUsernameBytes
com.google.protobuf.ByteString getCanonicalizedUsernameBytes()
Optional. The username part of the user credentials for which we want to trigger a leak check in canonicalized form. This is the same data used to create the hashed_user_credentials on the customer side.
string canonicalized_username = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for canonicalizedUsername.
-
-