Searched refs:encode (Results 1 - 25 of 56) sorted by relevance

123

/freebsd-11-stable/tests/sys/opencrypto/
H A Dcryptodev.py423 print 'enc:', enc.encode('hex')
424 print ' ct:', ct.encode('hex')
430 print 'dec:', dec.encode('hex')
431 print ' pt:', pt.encode('hex')
444 print 'enc:', enc.encode('hex')
445 print ' ct:', ct.encode('hex')
451 print 'dec:', dec.encode('hex')
452 print ' pt:', pt.encode('hex')
464 print 'enc:', enc.encode('hex')
465 print ' ct:', ct.encode('he
[all...]
H A Dcryptotest.py114 data['rct'] = rct.encode('hex')
115 data['rtag'] = rtag.encode('hex')
127 data['rpt'] = rpt.encode('hex')
128 data['rtag'] = rtag.encode('hex')
/freebsd-11-stable/sys/contrib/ngatm/netnatm/msg/
H A Dpriv.h49 * For each coding scheme a quadrupel of check, print, encode and
72 uni_encode_f encode; member in struct:iedecl
81 uni_msg_encode_f encode; member in struct:msgdecl
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftp/
H A Dsecurity.h55 int (*encode)(void *, void*, int, int, void**); member in struct:sec_client_mech
66 int (*encode)(void *, void*, int, int, void**); member in struct:sec_server_mech
/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A Dcheck-common.h53 int (ASN1CALL *encode)(unsigned char *, size_t, void *, size_t *),
H A Dasn1-template.h104 asn1_type_encode encode; member in struct:asn1_type_func
/freebsd-11-stable/crypto/openssl/crypto/pem/
H A Dpem_seal.c94 EVP_EncodeInit(&ctx->encode);
105 /* base64 encode the keys */
137 EVP_EncodeUpdate(&ctx->encode, out, &j, buffer, j);
167 EVP_EncodeUpdate(&ctx->encode, out, &j, s, i);
170 EVP_EncodeFinal(&ctx->encode, out, &j);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DHeader.h120 llvm::Error encode(FileWriter &O) const;
H A DRange.h56 /// ranges to be efficiently encoded using ULEB128 encodings as we encode the
62 void encode(FileWriter &O, uint64_t BaseAddr) const;
105 /// See the AddressRange comment for the encode and decode methods for full
109 void encode(FileWriter &O, uint64_t BaseAddr) const;
H A DGsymCreator.h158 llvm::Error encode(FileWriter &O) const;
H A DInlineInfo.h34 /// Any clients that encode information will need to ensure the ranges are
45 /// we encode the offset and size of each range instead of full addresses. This
168 llvm::Error encode(FileWriter &O, uint64_t BaseAddr) const;
H A DLineTable.h112 /// opcodes that allows us to encode line tables in fewer bytes than standard
166 llvm::Error encode(FileWriter &O, uint64_t BaseAddr) const;
/freebsd-11-stable/contrib/wpa/hostapd/
H A Dwps-ap-nfc.py66 if "FAIL" in wpas.request("WPS_NFC_TAG_READ " + str(message).encode("hex")):
106 str(req).encode("hex") + " " +
107 str(sel).encode("hex"))
139 print(str(request).encode("hex"))
152 print(data.encode("hex"))
166 print(str(sel).encode("hex"))
/freebsd-11-stable/crypto/openssl/crypto/evp/
H A Dbio_b64.c89 int encode; member in struct:b64_struct
128 ctx->encode = 0;
163 if (ctx->encode != B64_DECODE) {
164 ctx->encode = B64_DECODE;
378 if (ctx->encode != B64_ENCODE) {
379 ctx->encode = B64_ENCODE;
494 ctx->encode = B64_NONE;
506 if ((ret == 0) && (ctx->encode != B64_NONE)
535 } else if (ctx->encode != B64_NONE && ctx->base64.num != 0) {
/freebsd-11-stable/usr.bin/uuencode/
H A Duuencode.c63 static void encode(void);
133 encode();
178 encode(void) function
/freebsd-11-stable/contrib/wpa/wpa_supplicant/examples/
H A Dp2p-nfc.py81 cmd = "WPS_NFC_TAG_READ " + str(message).encode("hex")
136 cmd = "NFC_REPORT_HANDOVER " + type + " P2P " + str(req).encode("hex") + " " + str(sel).encode("hex")
147 cmd = "NFC_REPORT_HANDOVER " + type + " WPS " + str(req).encode("hex") + " " + str(sel).encode("hex")
163 print("Handover request carrier record from wpa_supplicant: " + data.encode("hex"))
186 print(str(message).encode("hex"))
225 print(str(message).encode("hex"))
312 print(data.encode("hex"))
342 print(data.encode("he
[all...]
H A Dwps-nfc.py70 if "FAIL" in wpas.request("WPS_NFC_TAG_READ " + str(message).encode("hex")):
134 str(req).encode("hex") + " " +
135 str(sel).encode("hex"))
181 print(data.encode("hex"))
196 print(str(sel).encode("hex"))
210 print("Handover request carrier record from wpa_supplicant: " + data.encode("hex"))
222 print(str(message).encode("hex"))
261 print(str(message).encode("hex"))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DRange.cpp70 void AddressRange::encode(FileWriter &O, uint64_t BaseAddr) const { function in class:AddressRange
85 void AddressRanges::encode(FileWriter &O, uint64_t BaseAddr) const { function in class:AddressRanges
90 Range.encode(O, BaseAddr);
H A DGsymCreator.cpp50 return encode(O);
53 llvm::Error GsymCreator::encode(FileWriter &O) const { function in class:GsymCreator
57 "no functions to encode");
94 llvm::Error Err = Hdr.encode(O);
139 if (Expected<uint64_t> OffsetOrErr = FuncInfo.encode(O))
H A DFunctionInfo.cpp19 /// FunctionInfo information type that is used to encode the optional data
96 llvm::Expected<uint64_t> FunctionInfo::encode(FileWriter &O) const { function in class:FunctionInfo
99 "attempted to encode invalid FunctionInfo object");
115 llvm::Error err = OptLineTable->encode(O, Range.Start);
133 llvm::Error err = Inline->encode(O, Range.Start);
/freebsd-11-stable/contrib/ntp/util/
H A Dtg.c228 void digit(int); /* encode digit */
242 int encode = WWV; /* encoder select */ variable
287 encode = IRIG;
341 printf("port %d gain %d rate %d chan %d prec %d encode %d\n",
368 switch (encode) {
433 if (encode == WWV) {
441 if (encode == IRIG) {
452 switch(encode) {
/freebsd-11-stable/contrib/gdb/include/
H A Dxtensa-isa-internal.h59 xtensa_immed_encode_fn encode; /* Encode the operand value. */ member in struct:xtensa_operand_internal_struct
/freebsd-11-stable/release/scripts/
H A Dlist-new-changesets.py72 print(msg.encode('utf-8'))
/freebsd-11-stable/tests/sys/geom/class/eli/
H A Dgentestvect.py12 s = s.encode(encoding)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h133 ByValAlign = encode(A);
142 OrigAlign = encode(A);

Completed in 175 milliseconds

123