Home
last modified time | relevance | path

Searched refs:encoder (Results 1 – 25 of 48) sorted by relevance

12

/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/Queue/
H A DAsn1MessageQueue.php34 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 DQuery.php80 $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 DAnonymousChallenge.php33 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 DCramMD5Challenge.php38 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 DPlainChallenge.php29 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 DDigestMD5Challenge.php51 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 DCaptureConfig.java62 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 DMovieEditorDialog.java497 SwingWorker<Movie, Long> encoder = new SwingWorker<Movie, Long>() { in buildUI()
628 encoder.execute(); in buildUI()
/plugin/html2pdf/html2pdf/html2ps/
H A Doutput._generic.ps.class.php31 function set_image_encoder(&$encoder) { argument
32 $this->image_encoder = $encoder;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DExtendedRequest.php120 $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 DExtendedResponse.php105 $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 DPwdPolicyResponseControl.php139 $encoder = new LdapEncoder();
145 $warnings = $encoder->complete($child, AbstractType::TAG_TYPE_SEQUENCE, [
162 $error = $encoder->complete($child, AbstractType::TAG_TYPE_ENUMERATED)->getValue();
H A DControl.php159 $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 DLdapQueue.php50 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 DREADME.md16 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 DCHANGELOG.md25 * 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 DClientQueue.php43 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 DSortingControl.php101 $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 DSubstringFilter.php199 $encoder = new LdapEncoder();
200 …$type = $type instanceof IncompleteType ? $encoder->complete($type, AbstractType::TAG_TYPE_SEQUENC…
/plugin/pureldap/vendor/freedsx/socket/
H A DCHANGELOG.md16 * Update the ASN.1 Message Queue to use the last position of the encoder.
/plugin/openid/Auth/OpenID/
H A DServer.php1686 $this->encoder = new Auth_OpenID_SigningEncoder($this->signatory);
1748 return $this->encoder->encode($response);
/plugin/fedauth/Auth/OpenID/
H A DServer.php1686 $this->encoder = new Auth_OpenID_SigningEncoder($this->signatory);
1748 return $this->encoder->encode($response);
/plugin/jplayer/vendor/james-heinrich/getid3/
H A Dstructure.txt95 … ['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 Djcapture.jar ... boolean play private com.hammurapi.jcapture.VideoEncoder encoder private int grabRange private java.util.concurrent. ...
H A Dcommons-codec-1.3.jar ... pMessage } org/apache/commons/codec/Encoder.class Encoder.java package org.apache. ...

12