/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/Queue/ |
H A D | Asn1MessageQueue.php | 34 protected $encoder; variable in FreeDSx\\Socket\\Queue\\Asn1MessageQueue 38 * @param EncoderInterface $encoder 41 public function __construct(Socket $socket, EncoderInterface $encoder, ?string $pduClass = null) argument 50 $this->encoder = $encoder; 61 $asn1 = $this->encoder->decode($bytes); 62 $message = new Message($asn1, $this->encoder->getLastPosition());
|
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/ |
H A D | Query.php | 80 $encoder = function ($str) { 84 $encoder = 'rawurlencode'; 86 $encoder = 'urlencode'; 93 $k = $encoder($k); 97 $qs .= '=' . $encoder($v); 104 $qs .= '=' . $encoder($vv);
|
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Challenge/ |
H A D | AnonymousChallenge.php | 33 protected $encoder; variable in FreeDSx\\Sasl\\Challenge\\AnonymousChallenge 37 $this->encoder = new AnonymousEncoder(); 61 $received = $this->encoder->decode($received, $this->context); 79 $this->context->setResponse($this->encoder->encode(new Message($data), $this->context));
|
H A D | CramMD5Challenge.php | 38 protected $encoder; variable in FreeDSx\\Sasl\\Challenge\\CramMD5Challenge 42 $this->encoder = new CramMD5Encoder(); 52 $received = ($received === null) ? null : $this->encoder->decode($received, $this->context); 73 $this->context->setResponse($this->encoder->encode($challenge, $this->context)); 91 $this->context->setResponse($this->encoder->encode($response, $this->context));
|
H A D | PlainChallenge.php | 29 protected $encoder; variable in FreeDSx\\Sasl\\Challenge\\PlainChallenge 38 $this->encoder = new PlainEncoder(); 48 $received = $received === null ? null : $this->encoder->decode($received, $this->context); 88 $this->context->setResponse($this->encoder->encode($message, $this->context));
|
H A D | DigestMD5Challenge.php | 51 protected $encoder; variable in FreeDSx\\Sasl\\Challenge\\DigestMD5Challenge 61 $this->encoder = new DigestMD5Encoder(); 73 $received = $received === null ? null : $this->encoder->decode($received, $this->context); 120 return $response === null ? null : $this->encoder->encode($response, $this->context); 190 return $this->encoder->encode($response, $this->context);
|
/plugin/jcapture/src/com/hammurapi/jcapture/ |
H A D | CaptureConfig.java | 62 private VideoEncoder encoder; field in CaptureConfig 92 return encoder; in getEncoder() 95 public void setEncoder(VideoEncoder encoder) { in setEncoder() argument 96 this.encoder = encoder; in setEncoder() 159 if (encoder==null && !encoders.isEmpty()) { in CaptureConfig() 160 encoder = encoders.get(0); in CaptureConfig() 301 encoder = null; in load() 306 encoder = candidate; in load() 311 if (encoder==null && !getEncoders().isEmpty()) { in load() 312 encoder = getEncoders().get(0); in load() [all …]
|
H A D | MovieEditorDialog.java | 497 SwingWorker<Movie, Long> encoder = new SwingWorker<Movie, Long>() { in buildUI() 628 encoder.execute(); in buildUI()
|
/plugin/html2pdf/html2pdf/html2ps/ |
H A D | output._generic.ps.class.php | 31 function set_image_encoder(&$encoder) { argument 32 $this->image_encoder = $encoder;
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/ |
H A D | ExtendedRequest.php | 120 $encoder = new LdapEncoder(); 122 $value = $encoder->encode($value); 124 $value = $encoder->encode($value->toAsn1());
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/ |
H A D | ExtendedResponse.php | 105 $encoder = new LdapEncoder(); 108 $value = $encoder->encode($value); 110 $value = $encoder->encode($value->toAsn1());
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/ |
H A D | PwdPolicyResponseControl.php | 139 $encoder = new LdapEncoder(); 145 $warnings = $encoder->complete($child, AbstractType::TAG_TYPE_SEQUENCE, [ 162 $error = $encoder->complete($child, AbstractType::TAG_TYPE_ENUMERATED)->getValue();
|
H A D | Control.php | 159 $encoder = new LdapEncoder(); 161 $value = $encoder->encode($this->controlValue); 163 $value = $encoder->encode($this->controlValue->toAsn1());
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ |
H A D | LdapQueue.php | 50 public function __construct(Socket $socket, EncoderInterface $encoder = null) argument 52 parent::__construct($socket, $encoder ?? new LdapEncoder()); 138 $encoded = $this->encoder->encode($message->toAsn1());
|
/plugin/pureldap/vendor/freedsx/asn1/ |
H A D | README.md | 16 To encode an ASN.1 structure you can use the helper methods of the Asn1 class and an encoder: 35 # Encode using the more strict DER encoder 41 To decode an ASN.1 structure you can get an encoder and call decode then parse it out: 52 # Get a BER encoder instance, call decode on it, and $pdu will now be a sequence object.
|
H A D | CHANGELOG.md | 25 * Removed the 'constructed_only' and 'primitive_only' options for the encoder. 33 * Improve general encoder performance with various optimizations.
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Queue/ |
H A D | ClientQueue.php | 43 public function __construct(SocketPool $socketPool, EncoderInterface $encoder = null) argument 46 parent::__construct($socketPool->connect(), $encoder);
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Sorting/ |
H A D | SortingControl.php | 101 $encoder = new LdapEncoder(); 113 … $useReverseOrder = $encoder->complete($keyItem, AbstractType::TAG_TYPE_BOOLEAN)->getValue();
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/ |
H A D | SubstringFilter.php | 199 $encoder = new LdapEncoder(); 200 …$type = $type instanceof IncompleteType ? $encoder->complete($type, AbstractType::TAG_TYPE_SEQUENC…
|
/plugin/pureldap/vendor/freedsx/socket/ |
H A D | CHANGELOG.md | 16 * Update the ASN.1 Message Queue to use the last position of the encoder.
|
/plugin/openid/Auth/OpenID/ |
H A D | Server.php | 1686 $this->encoder = new Auth_OpenID_SigningEncoder($this->signatory); 1748 return $this->encoder->encode($response);
|
/plugin/fedauth/Auth/OpenID/ |
H A D | Server.php | 1686 $this->encoder = new Auth_OpenID_SigningEncoder($this->signatory); 1748 return $this->encoder->encode($response);
|
/plugin/jplayer/vendor/james-heinrich/getid3/ |
H A D | structure.txt | 95 … ['encoder']=>string() // name and version of encoder used to create file, if known 106 … ['encoder']=>string() // name and version of encoder used to create file, if known 1142 ['encoder']=>string() // 1163 ['encoder']=>string() //
|
/plugin/jcapture/lib/ |
H A D | jcapture.jar | ... boolean play
private com.hammurapi.jcapture.VideoEncoder encoder
private int grabRange
private java.util.concurrent. ... |
H A D | commons-codec-1.3.jar | ... pMessage
}
org/apache/commons/codec/Encoder.class
Encoder.java
package org.apache. ... |