Home
last modified time | relevance | path

Searched refs:rdn (Results 1 – 3 of 3) sorted by relevance

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DRdn.php97 $rdn = $this->name . '=' . $this->value;
100 $rdn .= '+' . $additional->getName() . '=' . $additional->getValue();
103 return $rdn;
115 * @param string $rdn
119 public static function create(string $rdn): Rdn argument
121 $pieces = preg_split('/(?<!\\\\)\+/', $rdn);
123 throw new InvalidArgumentException(sprintf('The RDN "%s" is invalid.', $rdn));
142 throw new InvalidArgumentException(sprintf("The RDN '%s' is not valid.", $rdn));
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DOperations.php179 * @param string|Rdn $rdn
181 public static function rename(string $dn, $rdn, bool $deleteOldRdn = true): ModifyDnRequest argument
183 return new ModifyDnRequest($dn, $rdn, $deleteOldRdn);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
DX509.php1873 foreach ($dn['rdnSequence'] as $rdn) {
1874 foreach ($rdn as $i => $attr) {
1875 $attr = &$rdn[$i];
1890 $result .= ASN1::encodeDER($rdn, Maps\RelativeDistinguishedName::MAP);