| 326 | |
| 327 | |
| 328 | class LDAP_Authentication_SaslCredentials(ASN1_Packet): |
| 329 | ASN1_codec = ASN1_Codecs.BER |
| 330 | ASN1_root = ASN1F_SEQUENCE( |
| 331 | LDAPString("mechanism", ""), |
| 332 | ASN1F_optional( |
| 333 | _SaslCredentialsField("credentials", ""), |
| 334 | ), |
| 335 | implicit_tag=ASN1_Class_LDAP_Authentication.sasl, |
| 336 | ) |
| 337 | |
| 338 | |
| 339 | class LDAP_BindRequest(ASN1_Packet): |
no test coverage detected