Interface KeyUsage.ExtendedKeyUsageOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
KeyUsage.ExtendedKeyUsageOptions,KeyUsage.ExtendedKeyUsageOptions.Builder
- Enclosing class:
- KeyUsage
public static interface KeyUsage.ExtendedKeyUsageOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetClientAuth()Corresponds to OID 1.3.6.1.5.5.7.3.2.booleangetCodeSigning()Corresponds to OID 1.3.6.1.5.5.7.3.3.booleangetEmailProtection()Corresponds to OID 1.3.6.1.5.5.7.3.4.booleangetOcspSigning()Corresponds to OID 1.3.6.1.5.5.7.3.9.booleangetServerAuth()Corresponds to OID 1.3.6.1.5.5.7.3.1.booleangetTimeStamping()Corresponds to OID 1.3.6.1.5.5.7.3.8.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getServerAuth
boolean getServerAuth()
Corresponds to OID 1.3.6.1.5.5.7.3.1. Officially described as "TLS WWW server authentication", though regularly used for non-WWW TLS.
bool server_auth = 1;- Returns:
- The serverAuth.
-
getClientAuth
boolean getClientAuth()
Corresponds to OID 1.3.6.1.5.5.7.3.2. Officially described as "TLS WWW client authentication", though regularly used for non-WWW TLS.
bool client_auth = 2;- Returns:
- The clientAuth.
-
getCodeSigning
boolean getCodeSigning()
Corresponds to OID 1.3.6.1.5.5.7.3.3. Officially described as "Signing of downloadable executable code client authentication".
bool code_signing = 3;- Returns:
- The codeSigning.
-
getEmailProtection
boolean getEmailProtection()
Corresponds to OID 1.3.6.1.5.5.7.3.4. Officially described as "Email protection".
bool email_protection = 4;- Returns:
- The emailProtection.
-
getTimeStamping
boolean getTimeStamping()
Corresponds to OID 1.3.6.1.5.5.7.3.8. Officially described as "Binding the hash of an object to a time".
bool time_stamping = 5;- Returns:
- The timeStamping.
-
getOcspSigning
boolean getOcspSigning()
Corresponds to OID 1.3.6.1.5.5.7.3.9. Officially described as "Signing OCSP responses".
bool ocsp_signing = 6;- Returns:
- The ocspSigning.
-
-