Home
last modified time | relevance | path

Searched refs:octets (Results 1 – 25 of 38) sorted by relevance

12

/external/v8/src/
Duri.js46 function URIEncodeOctets(octets, result, index) { argument
51 index = URIAddEncodedOctetToBuffer(octets[0], result, index);
52 if (octets[1]) index = URIAddEncodedOctetToBuffer(octets[1], result, index);
53 if (octets[2]) index = URIAddEncodedOctetToBuffer(octets[2], result, index);
54 if (octets[3]) index = URIAddEncodedOctetToBuffer(octets[3], result, index);
63 var octets = new $Array(3);
65 octets[0] = cc;
67 octets[0] = y + 192;
68 octets[1] = z + 128;
70 octets[0] = x + 224;
[all …]
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DDERApplicationSpecific.java16 private final byte[] octets; field in DERApplicationSpecific
21 byte[] octets) in DERApplicationSpecific() argument
25 this.octets = octets; in DERApplicationSpecific()
30 byte[] octets) in DERApplicationSpecific() argument
32 this(false, tag, octets); in DERApplicationSpecific()
56 this.octets = data; in DERApplicationSpecific()
63 this.octets = tmp; in DERApplicationSpecific()
84 this.octets = bOut.toByteArray(); in DERApplicationSpecific()
106 return octets; in getContents()
163 out.writeEncoded(classBits, tag, octets); in encode()
[all …]
DDERBoolean.java45 byte[] octets) in getInstance() argument
47 return (octets[0] != 0) ? TRUE : FALSE; in getInstance()
/external/bouncycastle/src/main/java/org/bouncycastle/util/
DIPAddress.java47 int octets = 0; in isValidIPv4() local
56 if (octets == 4) in isValidIPv4()
73 octets++; in isValidIPv4()
76 return octets == 4; in isValidIPv4()
129 int octets = 0; in isValidIPv6() local
138 if (octets == 8) in isValidIPv6()
154 octets++; // add an extra one as address covers 2 words. in isValidIPv6()
181 octets++; in isValidIPv6()
184 return octets == 8 || doubleColonFound; in isValidIPv6()
/external/wpa_supplicant_8/hostapd/
Dhostapd.sim_db4 # Kc: hex, 8 octets
5 # SRES: hex, 4 octets
6 # RAND: hex, 16 octets
Dhostapd.eap_user9 # Password hash is stored as hash:<16-octets of hex data> without quotation
/external/dropbear/libtomcrypt/src/pk/asn1/der/printable_string/
Dder_length_printable_string.c128 int der_length_printable_string(const unsigned char *octets, unsigned long noctets, unsigned long *… in der_length_printable_string() argument
133 LTC_ARGCHK(octets != NULL); in der_length_printable_string()
137 if (der_printable_char_encode(octets[x]) == -1) { in der_length_printable_string()
/external/dropbear/libtomcrypt/src/pk/asn1/der/ia5/
Dder_length_ia5_string.c156 int der_length_ia5_string(const unsigned char *octets, unsigned long noctets, unsigned long *outlen) in der_length_ia5_string() argument
161 LTC_ARGCHK(octets != NULL); in der_length_ia5_string()
165 if (der_ia5_char_encode(octets[x]) == -1) { in der_length_ia5_string()
/external/dbus/dbus/
Ddbus-string.c1059 #define ASSIGN_2_OCTETS(p, octets) \ argument
1060 *((dbus_uint16_t*)(p)) = *((dbus_uint16_t*)(octets));
1063 #define ASSIGN_4_OCTETS(p, octets) \ argument
1064 *((dbus_uint32_t*)(p)) = *((dbus_uint32_t*)(octets));
1068 #define ASSIGN_8_OCTETS(p, octets) \ argument
1069 *((dbus_uint64_t*)(p)) = *((dbus_uint64_t*)(octets));
1072 #define ASSIGN_8_OCTETS(p, octets) \ argument
1078 *b++ = octets[0]; \
1079 *b++ = octets[1]; \
1080 *b++ = octets[2]; \
[all …]
Ddbus-string.h161 const unsigned char octets[4]);
163 const unsigned char octets[8]);
172 const unsigned char octets[2]);
175 const unsigned char octets[4]);
178 const unsigned char octets[8]);
/external/iptables/extensions/
Dlibip6t_dst.man4 Total length of this header in octets.
7 numeric type of option and the length of the option data in octets.
Dlibip6t_hbh.man4 Total length of this header in octets.
7 numeric type of option and the length of the option data in octets.
Dlibip6t_ah.man7 Total length of this header in octets.
/external/srtp/doc/
Ddraft-irtf-cfrg-icm-00.txt98 BLOCK_LENGTH the number of octets in the cipher block
99 KEY_LENGTH the number of octets in the cipher key
100 OFFSET_LENGTH the number of octets in the offset
101 SEGMENT_INDEX_LENGTH the number of octets in the segment index
102 BLOCK_INDEX_LENGTH the number of octets in the block index
112 A counter is a value containing BLOCK_LENGTH octets which is
165 contains no more than (256^BLOCK_INDEX_LENGTH)*BLOCK_LENGTH octets.
205 Offset is an integer with OFFSET_LENGTH octets, which is used to
211 protocol, that key SHOULD be considered a sequence of octets in
239 is then shifted so that it occupies the most significant octets of
Dintro.txt233 19 octets received from SSRC 2078917053 word: A
234 19 octets received from SSRC 2078917053 word: a
235 20 octets received from SSRC 2078917053 word: aa
236 21 octets received from SSRC 2078917053 word: aal
339 into the buffer and returns the number of octets written to that
/external/tcpdump/
Dprint-cnfp.c71 u_int32_t octets; member
188 EXTRACT_32BITS(&nr->octets), buf); in cnfp_print()
/external/srtp/
DREADME135 19 octets received from SSRC 2078917053 word: A
136 19 octets received from SSRC 2078917053 word: a
137 20 octets received from SSRC 2078917053 word: aa
138 21 octets received from SSRC 2078917053 word: aal
/external/srtp/googlepatches/
Dgoogle-5-buffer-overflow.patch23 /* force last two octets of the offset to zero (for srtp compatibility) */
/external/dropbear/libtomcrypt/
Dcrypt.tex572 /** min keysize (octets) */
575 /** max keysize (octets) */
578 /** block size (octets) */
908 In all cases, \textit{len} is the size of the buffer (as number of octets) to encrypt or decrypt. …
1036 … is the (normally AES) key and can be any length (typically 16, 24 or 32 octets long). The second…
1037 $K_2$ is the \textit{tweak} key and is always 16 octets long. The tweak value is \textbf{NOT} a no…
1052 … octet) \textit{IV}, cipher $K_1$ \textit{key} of length \textit{keylen} octets and the (16 octet)…
1071 …text buffer (or vice versa). The length is specified by \textit{len} in octets but must be a mult…
1188 The \textit{key} parameter is the shared secret symmetric key of length \textit{keylen} octets. Th…
1189 random public string of length \textit{noncelen} octets. The \textit{header} parameter is the rand…
[all …]
/external/ppp/pppd/plugins/radius/etc/
Ddictionary9 # string - 0-253 octets
10 # ipaddr - 4 octets in network byte order
/external/dropbear/libtomcrypt/src/headers/
Dtomcrypt_pk.h483 int der_length_ia5_string(const unsigned char *octets, unsigned long noctets, unsigned long *outlen…
493 int der_length_printable_string(const unsigned char *octets, unsigned long noctets, unsigned long *…
/external/icu4c/extra/uconv/resources/
Dfr.txt60 " -b, --block-size taille lit des blocks de taille octets (défaut : 4096)\n"
/external/bluetooth/bluez/doc/
Dmgmt-api.txt78 Device_Class (3 octets)
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
DJDKPKCS12KeyStore.java854 byte[] octets = cryptData(false, d.getEncryptionAlgorithm(), in engineLoad()
856 ASN1Sequence seq = (ASN1Sequence) ASN1Object.fromByteArray(octets); in engineLoad()
/external/dnsmasq/contrib/dns-loc/
Ddnsmasq2-loc-rfc1876.patch415 + return (16); /* size of RR in octets */

12