/titanic_41/usr/src/cmd/ssh/libssh/common/ |
H A D | uuencode.c | 44 char *encoded, *p; in uudecode() local 47 encoded = xstrdup(src); in uudecode() 49 for (p = encoded; *p == ' ' || *p == '\t'; p++) in uudecode() 55 len = __b64_pton((u_char *) encoded, target, targsize); in uudecode() 56 xfree(encoded); in uudecode()
|
H A D | ssh-gss.c | 55 char *encoded; member 85 if ((*p)->encoded) in ssh_gssapi_mech_oids_to_kexnames() 86 xfree((*p)->encoded); in ssh_gssapi_mech_oids_to_kexnames() 115 (new_gss_enc2oid[i])->encoded = enc_name; in ssh_gssapi_mech_oids_to_kexnames() 131 buffer_append(&buf, (*p)->encoded, strlen((*p)->encoded)); in ssh_gssapi_mech_oids_to_kexnames() 160 *kexname = xstrdup((*p)->encoded); in ssh_gssapi_mech_oid_to_kexname() 184 if (strcmp(kexname, (*p)->encoded) == 0) { in ssh_gssapi_oid_of_kexname() 201 char *encoded; in ssh_gssapi_encode_oid_for_kex() local 238 encoded = xmalloc(EVP_MD_size(evp_md)*2); in ssh_gssapi_encode_oid_for_kex() 240 encoded, EVP_MD_size(evp_md) * 2); in ssh_gssapi_encode_oid_for_kex() [all …]
|
H A D | hostfile.c | 117 static char encoded[1024]; in host_hash() local 142 snprintf(encoded, sizeof(encoded), "%s%s%c%s", HASH_MAGIC, uu_salt, in host_hash() 145 return (encoded); in host_hash()
|
/titanic_41/usr/src/common/crypto/modes/ |
H A D | ccm.c | 711 encode_adata_len(ulong_t auth_data_len, uint8_t *encoded, size_t *encoded_len) in encode_adata_len() argument 723 encoded[0] = (auth_data_len & 0xff00) >> 8; in encode_adata_len() 724 encoded[1] = auth_data_len & 0xff; in encode_adata_len() 730 encoded[0] = 0xff; in encode_adata_len() 731 encoded[1] = 0xfe; in encode_adata_len() 733 lencoded_ptr = (uint32_t *)(void *)&encoded[2]; in encode_adata_len() 736 encoded[2] = (auth_data_len & 0xff000000) >> 24; in encode_adata_len() 737 encoded[3] = (auth_data_len & 0xff0000) >> 16; in encode_adata_len() 738 encoded[4] = (auth_data_len & 0xff00) >> 8; in encode_adata_len() 739 encoded[5] = auth_data_len & 0xff; in encode_adata_len() [all …]
|
/titanic_41/usr/src/cmd/ssh/ssh-keygen/ |
H A D | ssh-keygen.c | 337 char encoded[8096]; in do_convert_from_ssh2() local 353 encoded[0] = '\0'; in do_convert_from_ssh2() 372 strlcat(encoded, line, sizeof(encoded)); in do_convert_from_ssh2() 374 len = strlen(encoded); in do_convert_from_ssh2() 376 (encoded[len-1] == '=') && in do_convert_from_ssh2() 377 (encoded[len-2] == '=') && in do_convert_from_ssh2() 378 (encoded[len-3] == '=')) in do_convert_from_ssh2() 379 encoded[len-3] = '\0'; in do_convert_from_ssh2() 380 blen = uudecode(encoded, blob, sizeof(blob)); in do_convert_from_ssh2()
|
/titanic_41/usr/src/lib/print/libpapi-ipp/common/ |
H A D | ipp-support.c | 423 char encoded[BUFSIZ]; in setAuthString() local 457 httpEncode64(encoded, plain); in setAuthString() 459 "Basic %s", encoded); in setAuthString() 482 md5_calc(encoded, line, strlen(line)); in setAuthString() 487 encoded); in setAuthString()
|
/titanic_41/usr/src/cmd/dtrace/test/tst/common/java_api/ |
H A D | tst.Bean.ksh.out | 5 encoded: 1 25 encoded: org.opensolaris.os.dtrace.AggregationRecord[tuple = [cat, 9, 65 …encoded: org.opensolaris.os.dtrace.Aggregation[name = counts, id = 2, records = [org.opensolaris.o… 105 encoded: [cat, 9, 125 encoded: [1, 2, 3] 139 encoded: 153 …encoded: org.opensolaris.os.dtrace.Distribution[buckets = [org.opensolaris.os.dtrace.Distribution$… 159 …encoded: class org.opensolaris.os.dtrace.LinearDistribution[base = 1, step = 10, buckets = [org.op… 165 …encoded: org.opensolaris.os.dtrace.Distribution[buckets = [org.opensolaris.os.dtrace.Distribution$… 171 encoded: org.opensolaris.os.dtrace.Option[name = aggrate, value = 1s] [all …]
|
/titanic_41/usr/src/cmd/dtrace/test/tst/common/java_api/src/ |
H A D | TestBean.java | 687 String encoded = getString(obj); in performBeanTest() local 688 System.out.println(" encoded: " + encoded); in performBeanTest() 697 if (!encoded.equals(decoded)) { in performBeanTest()
|
/titanic_41/usr/src/lib/libkmf/ber_der/common/ |
H A D | clasn1.c | 512 DerDecodeDSASignature(KMF_DATA *encoded, KMF_DATA *signature) in DerDecodeDSASignature() argument 519 buf.bv_val = (char *)encoded->Data; in DerDecodeDSASignature() 520 buf.bv_len = encoded->Length; in DerDecodeDSASignature() 522 if (encoded == NULL || encoded->Data == NULL || in DerDecodeDSASignature() 596 DerDecodeECDSASignature(KMF_DATA *encoded, KMF_DATA *signature) in DerDecodeECDSASignature() argument 599 return (DerDecodeDSASignature(encoded, signature)); in DerDecodeECDSASignature()
|
/titanic_41/usr/src/lib/libkmf/plugins/kmf_nss/common/ |
H A D | nss_spi.c | 1087 KMF_DATA *encoded) in NSS_EncodePubKeyData() argument 1094 if (keyp == NULL || encoded == NULL || keyp->keyp == NULL) in NSS_EncodePubKeyData() 1106 encoded->Data = malloc(rvitem->len); in NSS_EncodePubKeyData() 1107 if (encoded->Data == NULL) { in NSS_EncodePubKeyData() 1110 (void) memcpy(encoded->Data, rvitem->data, rvitem->len); in NSS_EncodePubKeyData() 1111 encoded->Length = rvitem->len; in NSS_EncodePubKeyData() 1116 encoded->Data = NULL; in NSS_EncodePubKeyData() 1117 encoded->Length = 0; in NSS_EncodePubKeyData()
|
/titanic_41/usr/src/cmd/cmd-inet/etc/ppp/ |
H A D | pap-secrets | 45 # After the password, which may be a crypt(3c) encoded password when acting
|
/titanic_41/usr/src/lib/libscf/common/ |
H A D | scf_tmpl.c | 4166 char *encoded = NULL; in _make_value_name() local 4170 encoded = malloc(sz); in _make_value_name() 4171 if (name == NULL || encoded == NULL) { in _make_value_name() 4174 free(encoded); in _make_value_name() 4178 if (scf_encode32(value, strlen(value), encoded, sz, NULL, in _make_value_name() 4186 if (strlcat(name, encoded, sz) >= sz) { in _make_value_name() 4189 free(encoded); in _make_value_name() 4196 free(encoded); in _make_value_name() 4203 free(encoded); in _make_value_name() 4210 free(encoded); in _make_value_name() [all …]
|
/titanic_41/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/ |
H A D | kerberos.ldif | 344 ##### The attribute is ASN.1 encoded. 446 ##### The attribute is ASN.1 encoded. 500 ##### This attribute is ASN.1 encoded.
|
/titanic_41/usr/src/lib/libdhcputil/ |
H A D | README.inittab | 238 pointer to a dynamically allocated byte-array representing the encoded 247 For inittab_decode(), `data' is a byte-array representing an encoded
|
/titanic_41/usr/src/cmd/file/ |
H A D | magic | 422 >20 long 2 run-length byte encoded image 432 >23 long 2 run-length byte encoded image
|
/titanic_41/usr/src/lib/libsqlite/src/ |
H A D | sqlite.h.in | 45 ** UTF-8 encoded data. The SQLITE_ISO8859 macro is defined if the 46 ** iso8859 encoded should be used. 846 ** The return value is the number of characters in the encoded
|
/titanic_41/usr/src/uts/common/smbsrv/ndl/ |
H A D | rpcpdu.ndl | 264 * This header comes before the NDR-encoded KERB_VALIDATION_INFO structure,
|
/titanic_41/usr/src/cmd/sgs/elfdump/common/ |
H A D | elfdump.msg | 185 @ MSG_ERR_DWOVRFLW "%s: %s: encoded DWARF data exceeds section size\n"
|
/titanic_41/usr/src/psm/stand/bootblks/zfs/common/ |
H A D | zfs.fth | 98 \ the reference marks are encoded with match-bits and match-min 550 \ 4B encoded nvpair size
|
/titanic_41/usr/src/cmd/sgs/libld/common/ |
H A D | libld.msg | 477 @ MSG_SCN_DWFOVRFLW "%s: section %s: encoded DWARF data exceeds \
|
/titanic_41/usr/src/cmd/sendmail/cf/m4/ |
H A D | proto.m4 | 2825 dnl use < > ? those are encoded in CN, DN, ...
|
/titanic_41/usr/src/lib/libast/common/ |
H A D | RELEASE | 972 tm/tmlocale.c: check for UTF-8 encoded LC_TIME files
|
/titanic_41/usr/src/cmd/sendmail/cf/ |
H A D | README | 2813 is encoded as:
|
/titanic_41/usr/src/uts/intel/io/acpica/ |
H A D | changes.txt | 1955 This change adds two macros to extract the encoded bus and segment 4924 access, the size is encoded as 1=byte, 2=word, 3=dword, and 4=qword.
|
/titanic_41/usr/src/cmd/terminfo/ |
H A D | termcap.src | 3107 # p2 = the base64-encoded clipboard content.
|