| 337 | |
| 338 | |
| 339 | class LDAP_BindRequest(ASN1_Packet): |
| 340 | ASN1_codec = ASN1_Codecs.BER |
| 341 | ASN1_root = ASN1F_SEQUENCE( |
| 342 | ASN1F_INTEGER("version", 3), |
| 343 | LDAPDN("bind_name", ""), |
| 344 | ASN1F_CHOICE( |
| 345 | "authentication", |
| 346 | None, |
| 347 | ASN1F_LDAP_Authentication_simple, |
| 348 | ASN1F_LDAP_Authentication_krbv42LDAP, |
| 349 | ASN1F_LDAP_Authentication_krbv42DSA, |
| 350 | LDAP_Authentication_SaslCredentials, |
| 351 | ), |
| 352 | implicit_tag=ASN1_Class_LDAP.BindRequest, |
| 353 | ) |
| 354 | |
| 355 | |
| 356 | class LDAP_BindResponse(ASN1_Packet): |
no test coverage detected