Searched refs:b64 (Results 1 - 25 of 32) sorted by relevance

12

/macosx-10.10.1/ruby-106/ruby/test/openssl/
H A Dtest_ns_spki.rb10 @b64 = "MIHFMHEwXDANBgkqhkiG9w0BAQEFAANLADBIAkEAnX0TILJrOMUue+PtwBRE6XfV"
11 @b64 << "WtKQbsshxk5ZhcUwcwyvcnIq9b82QhJdoACdD34rqfCAIND46fXKQUnb0mvKzQID"
12 @b64 << "AQABFhFNb3ppbGxhSXNNeUZyaWVuZDANBgkqhkiG9w0BAQQFAANBAAKv2Eex2n/S"
13 @b64 << "r/7iJNroWlSzSMtTiQTEB+ADWHGj9u1xrUrOilq/o2cuQxIfZcNZkYAkWP4DubqW"
14 @b64 << "i0//rgBvmco="
37 spki = OpenSSL::Netscape::SPKI.new(@b64)
38 assert_equal(@b64, spki.to_pem)
39 assert_equal(@b64.unpack("m").first, spki.to_der)
43 spki = OpenSSL::Netscape::SPKI.new(@b64.unpack("m").first)
44 assert_equal(@b64, spk
[all...]
/macosx-10.10.1/network_cmds-457/ping6.tproj/
H A Dmd5.c235 static void md5_calc(b64, ctxt)
236 u_int8_t *b64;
244 u_int32_t *X = (u_int32_t *)b64;
250 y[ 0] = b64[ 3]; y[ 1] = b64[ 2]; y[ 2] = b64[ 1]; y[ 3] = b64[ 0];
251 y[ 4] = b64[ 7]; y[ 5] = b64[ 6]; y[ 6] = b64[
[all...]
/macosx-10.10.1/OpenSSL098-52/src/demos/
H A Db64.c1 /* demos/b64.c */
92 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL; local
228 if ((b64=BIO_new(BIO_f_base64())) == NULL)
232 BIO_set_callback(b64,BIO_debug_callback);
233 BIO_set_callback_arg(b64,bio_err);
236 wbio=BIO_push(b64,wbio);
238 rbio=BIO_push(b64,rbio);
265 if (b64 != NULL) BIO_free(b64);
/macosx-10.10.1/xnu-2782.1.97/osfmk/prng/
H A Dfips_sha1.h60 u_int64_t b64[1]; /* # of bits, modulo 2^64 (msb first) */ member in union:sha1_ctxt::__anon15291
/macosx-10.10.1/xnu-2782.1.97/libkern/libkern/crypto/
H A Dsha1.h47 u_int64_t b64[1]; /* # of bits, modulo 2^64 (msb first) */ member in union:sha1_ctxt::__anon14986
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/lib/
H A DopensshCoding.cpp416 unsigned char *b64 = NULL; local
437 b64 = cuEnc64((unsigned char *)CFDataGetBytePtr(cfOut), (unsigned)CFDataGetLength(cfOut), &b64Len);
447 CFDataAppendBytes(cfOut, b64, b64Len);
462 if(b64) {
463 free(b64);
542 unsigned char *b64 = NULL; local
571 b64 = cuEnc64((unsigned char *)CFDataGetBytePtr(cfOut), (unsigned)CFDataGetLength(cfOut), &b64Len);
581 CFDataAppendBytes(cfOut, b64, b64Len);
597 if(b64) {
598 free(b64);
[all...]
/macosx-10.10.1/OpenSSL098-52/src/apps/
H A Dasn1pars.c92 BIO *in=NULL,*out=NULL,*b64=NULL, *derout = NULL; local
284 if ((b64=BIO_new(BIO_f_base64())) == NULL)
286 BIO_push(b64,in);
288 in=b64;
289 b64=tmp;
376 if (b64 != NULL) BIO_free(b64);
H A Denc.c120 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL; local
459 if ((b64=BIO_new(BIO_f_base64())) == NULL)
463 BIO_set_callback(b64,BIO_debug_callback);
464 BIO_set_callback_arg(b64,(char *)bio_err);
467 BIO_set_flags(b64,BIO_FLAGS_BASE64_NO_NL);
469 wbio=BIO_push(b64,wbio);
471 rbio=BIO_push(b64,rbio);
655 if (b64 != NULL) BIO_free(b64);
H A Drand.c206 BIO *b64 = BIO_new(BIO_f_base64()); local
207 if (b64 == NULL)
209 out = BIO_push(b64, out);
/macosx-10.10.1/CommonCrypto-60061/libcn/
H A Dgen_std_crc_table.c59 case 8: crc->table.b64[i] = (uint64_t) cm_tab(crc->descriptor, i); break;
85 case 8: printf(" 0x%016llx,", crc->table.b64[i]); break;
H A Dnormal_crc.c66 case 8: current = crc_table_value64(crc->table.b64, *p, current); break;
92 case 8: current = crc_table_value64(crc->table.b64, *p, current); break;
H A Dreverse_crc.c66 case 8: current = crc_table_value64(crc->table.b64, *p, current); break;
91 case 8: current = crc_table_value64(crc->table.b64, *p, current); break;
H A Dcrc.h100 uint64_t *b64; member in union:crcInfo_t::__anon447
/macosx-10.10.1/OpenSSL098-52/src/crypto/asn1/
H A Dasn_mime.c115 BIO *b64; local
117 b64 = BIO_new(BIO_f_base64());
118 if(!b64)
123 /* prepend the b64 BIO so all data is base64 encoded.
125 out = BIO_push(b64, out);
129 BIO_free(b64);
135 BIO *b64; local
137 if(!(b64 = BIO_new(BIO_f_base64()))) {
141 bio = BIO_push(b64, bio);
147 BIO_free(b64);
[all...]
/macosx-10.10.1/Heimdal-398.1.2/base/
H A Djson.c182 char *b64 = NULL; local
188 ret = base64_encode(heim_data_get_bytes(obj), (int)heim_data_get_length(obj), &b64);
189 if (ret < 0 || b64 == NULL)
195 j->out(j->ctx, b64); /* base64-encode; hope there's no aliasing */
197 free(b64);
209 free(b64);
212 v = heim_string_create(b64);
213 free(b64);
/macosx-10.10.1/xnu-2782.1.97/libkern/crypto/
H A Dcorecrypto_sha1.c10 return ctx->c.b64[0];
15 ctx->c.b64[0]=count;
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dldif.c121 int b64, url; local
163 b64 = 0;
172 b64 = 1;
187 if ( b64 ) {
627 int b64 = 0; local
633 b64 = 1;
644 if( !b64 ) {
671 /* get b64 digit from high order 6 bits */
697 /* get b64 digit from low order 6 bits */
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/liblutil/
H A Dldif.c121 int b64, url; local
163 b64 = 0;
172 b64 = 1;
187 if ( b64 ) {
612 int b64 = 0; local
618 b64 = 1;
629 if( !b64 ) {
656 /* get b64 digit from high order 6 bits */
682 /* get b64 digit from low order 6 bits */
H A Dpasswd.c430 struct berval *b64,
457 b64->bv_len = b64len + sc->bv_len;
458 b64->bv_val = ber_memalloc( b64->bv_len + 1 );
460 if( b64->bv_val == NULL ) {
465 AC_MEMCPY(b64->bv_val, sc->bv_val, sc->bv_len);
469 &b64->bv_val[sc->bv_len], b64len );
478 b64->bv_len = sc->bv_len + rc;
479 assert( strlen(b64->bv_val) == b64
427 lutil_passwd_string64( const struct berval *sc, const struct berval *hash, struct berval *b64, const struct berval *salt ) argument
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/sshKey/
H A DsshKey.cpp1039 unsigned char *b64 = NULL; local
1062 b64 = cuEnc64((unsigned char *)CFDataGetBytePtr(cfOut), CFDataGetLength(cfOut), &b64Len);
1072 CFDataAppendBytes(cfOut, b64, b64Len);
1090 if(b64) {
1091 free(b64);
1102 unsigned char *b64 = NULL; local
1135 b64 = cuEnc64((unsigned char *)CFDataGetBytePtr(cfOut), CFDataGetLength(cfOut), &b64Len);
1145 CFDataAppendBytes(cfOut, b64, b64Len);
1163 if(b64) {
1164 free(b64);
[all...]
/macosx-10.10.1/rsync-45/rsync/
H A Dauthenticate.c32 char *b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; local
48 out[i] = b64[idx];
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/clients/tools/
H A Dcommon.c2265 struct berval b64 = BER_BVNULL; local
2286 b64.bv_len = LUTIL_BASE64_ENCODE_LEN(
2288 b64.bv_val = ber_memalloc( b64.bv_len + 1 );
2290 b64.bv_len = lutil_b64_ntop(
2293 b64.bv_val, b64.bv_len );
2296 if ( b64.bv_len ) {
2297 len += 1 + b64.bv_len;
2308 if ( b64
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/include/
H A Dlutil.h150 struct berval *b64,
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/tools/
H A Ddemo200 3 b64 Base64:
/macosx-10.10.1/curl-83.1.2/curl/lib/vtls/
H A Dcurl_darwinssl.c1533 unsigned char *b64; local
1556 b64 = malloc(len + 1);
1557 if(!b64)
1563 b64[j++] = cert_start[i];
1565 b64[j] = '\0';
1567 err = Curl_base64_decode((const char *)b64, out, outlen);
1568 free(b64);

Completed in 435 milliseconds

12