Searched refs:out (Results 1 - 25 of 796) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/lib/openssl-1.0.0d/demos/
H A Db64.pl13 $out.=$_;
16 $out =~ s/\s//g;
17 $out =~ s/(.{64})/$1\n/g;
18 print "$first$out\n$last\n";
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/seed/
H A Dseed_ecb.c54 void SEED_ecb_encrypt(const unsigned char *in, unsigned char *out, const SEED_KEY_SCHEDULE *ks, int enc) argument
57 SEED_encrypt(in, out, ks);
59 SEED_decrypt(in, out, ks);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/util/
H A Derr-ins.pl12 @out="";
15 push(@out,$_);
21 print OUT @out;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/asn1/
H A Dt_crl.c85 int X509_CRL_print(BIO *out, X509_CRL *x) argument
93 BIO_printf(out, "Certificate Revocation List (CRL):\n");
95 BIO_printf(out, "%8sVersion %lu (0x%lx)\n", "", l+1, l);
97 BIO_printf(out, "%8sSignature Algorithm: %s\n", "",
100 BIO_printf(out,"%8sIssuer: %s\n","",p);
102 BIO_printf(out,"%8sLast Update: ","");
103 ASN1_TIME_print(out,X509_CRL_get_lastUpdate(x));
104 BIO_printf(out,"\n%8sNext Update: ","");
106 ASN1_TIME_print(out,X509_CRL_get_nextUpdate(x));
107 else BIO_printf(out,"NON
[all...]
H A Dt_x509a.c68 int X509_CERT_AUX_print(BIO *out, X509_CERT_AUX *aux, int indent) argument
75 BIO_printf(out, "%*sTrusted Uses:\n%*s",
78 if(!first) BIO_puts(out, ", ");
82 BIO_puts(out, oidstr);
84 BIO_puts(out, "\n");
85 } else BIO_printf(out, "%*sNo Trusted Uses.\n", indent, "");
88 BIO_printf(out, "%*sRejected Uses:\n%*s",
91 if(!first) BIO_puts(out, ", ");
95 BIO_puts(out, oidstr);
97 BIO_puts(out, "\
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/ecdh/
H A Decdhtest.c109 static void *KDF1_SHA1(const void *in, size_t inlen, void *out, size_t *outlen) argument
116 return SHA1(in, inlen, out);
123 static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out) argument
146 BIO_puts(out,"Testing key generation with ");
147 BIO_puts(out,text);
149 BIO_puts(out,"\n");
151 (void)BIO_flush(out);
167 BIO_puts(out," pri 1=");
168 BN_print(out,a->priv_key);
169 BIO_puts(out,"\
303 BIO *out; local
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/test/
H A Decdhtest.c109 static void *KDF1_SHA1(const void *in, size_t inlen, void *out, size_t *outlen) argument
116 return SHA1(in, inlen, out);
123 static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out) argument
146 BIO_puts(out,"Testing key generation with ");
147 BIO_puts(out,text);
149 BIO_puts(out,"\n");
151 (void)BIO_flush(out);
167 BIO_puts(out," pri 1=");
168 BN_print(out,a->priv_key);
169 BIO_puts(out,"\
303 BIO *out; local
[all...]
H A Ddhtest.c35 * The word 'cryptographic' can be left out if the rouines from the library
104 BIO *out; local
116 out=BIO_new(BIO_s_file());
117 if (out == NULL) EXIT(1);
118 BIO_set_fp(out,stdout,BIO_NOCLOSE);
120 BN_GENCB_set(&_cb, &cb, out);
127 BIO_puts(out, "p value is not prime\n");
129 BIO_puts(out, "p value is not a safe prime\n");
131 BIO_puts(out, "unable to check the generator value\n");
133 BIO_puts(out, "th
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/modes/
H A Dcbc128.c70 void CRYPTO_cbc128_encrypt(const unsigned char *in, unsigned char *out, argument
77 assert(in && out && key && ivec);
81 ((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0) {
84 out[n] = in[n] ^ iv[n];
85 (*block)(out, out, key);
86 iv = out;
89 out += 16;
94 *(size_t*)(out+n) =
96 (*block)(out, ou
119 CRYPTO_cbc128_decrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], block128_f block) argument
[all...]
H A Dmodes.h11 unsigned char out[16],
14 typedef void (*cbc128_f)(const unsigned char *in, unsigned char *out,
18 void CRYPTO_cbc128_encrypt(const unsigned char *in, unsigned char *out,
21 void CRYPTO_cbc128_decrypt(const unsigned char *in, unsigned char *out,
25 void CRYPTO_ctr128_encrypt(const unsigned char *in, unsigned char *out,
30 void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out,
35 void CRYPTO_cfb128_encrypt(const unsigned char *in, unsigned char *out,
39 void CRYPTO_cfb128_8_encrypt(const unsigned char *in, unsigned char *out,
43 void CRYPTO_cfb128_1_encrypt(const unsigned char *in, unsigned char *out,
48 size_t CRYPTO_cts128_encrypt_block(const unsigned char *in, unsigned char *out,
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/lhash/
H A Dlh_stats.c35 * The word 'cryptographic' can be left out if the rouines from the library
73 void lh_stats(LHASH *lh, FILE *out) argument
75 fprintf(out,"num_items = %lu\n",lh->num_items);
76 fprintf(out,"num_nodes = %u\n",lh->num_nodes);
77 fprintf(out,"num_alloc_nodes = %u\n",lh->num_alloc_nodes);
78 fprintf(out,"num_expands = %lu\n",lh->num_expands);
79 fprintf(out,"num_expand_reallocs = %lu\n",lh->num_expand_reallocs);
80 fprintf(out,"num_contracts = %lu\n",lh->num_contracts);
81 fprintf(out,"num_contract_reallocs = %lu\n",lh->num_contract_reallocs);
82 fprintf(out,"num_hash_call
99 lh_node_stats(LHASH *lh, FILE *out) argument
112 lh_node_usage_stats(LHASH *lh, FILE *out) argument
180 lh_stats_bio(const _LHASH *lh, BIO *out) argument
208 lh_node_stats_bio(const _LHASH *lh, BIO *out) argument
221 lh_node_usage_stats_bio(const _LHASH *lh, BIO *out) argument
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/CPViz/viz/src/ie/ucc/cccc/viz/
H A DVisualizerBinaryVector.java40 public void draw(PrintWriter out,VisualState visualState) { argument
44 out.println("<!-- Binary Vector "+context+" -->");
45 standardGrid(out);
47 unitSquareSVG(out,posX(i),topY(),booleanColor(vars[i],removed[i]));
49 drawFocus(out,visualState.getFocus());
50 drawFailed(out,visualState.getFailed());
53 private void drawFocus(PrintWriter out,VizFocus focus) { argument
57 out.println("<!-- "+ focus + " -->");
58 hollowRectSVG(out,x,y,1,1,Colors.FOCUS_COLOR);
62 private void drawFailed(PrintWriter out,VizFaile argument
75 standardGrid(PrintWriter out) argument
[all...]
H A DVisualizerVector.java39 public void draw(PrintWriter out, VisualState visualState) { argument
42 out.println("<!-- Vector " + context + " -->");
43 standardGrid(out);
46 unitSquareSVG(out,posX(i),
50 unitSquareSVG(out,posX(i),
54 drawFocus(out,visualState.getFocus());
55 drawFailed(out,visualState.getFailed());
58 protected void drawFocus(PrintWriter out,VizFocus focus) { argument
62 hollowRectSVG(out,x,y,1,height(),Colors.FOCUS_COLOR);
65 protected void drawFailed(PrintWriter out,VizFaile argument
[all...]
H A DBox.java89 PrintWriter out = new PrintWriter(new FileWriter(f));
90 out.println("<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>");
91 out.println("<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"");
92 out.println(" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">");
93 out.println("<svg");
94 out.println(" xmlns:svg=\"http://www.w3.org/2000/svg\"");
95 out.println(" xmlns=\"http://www.w3.org/2000/svg\"");
96 out.println(" version=\"1.1\"");
97 out.println(" width=\""+tool.getWidth()+"px\"");
98 out
117 svgPostfix(PrintWriter out) argument
[all...]
H A DStateStack.java42 System.out.println(">>>>>");
44 System.out.println("State "+state.getId()+" "+ state.getTreeNode());
46 System.out.println("<<<<<<<");
/barrelfish-2018-10-04/include/openssl/
H A Dmodes.h11 unsigned char out[16],
14 typedef void (*cbc128_f)(const unsigned char *in, unsigned char *out,
18 void CRYPTO_cbc128_encrypt(const unsigned char *in, unsigned char *out,
21 void CRYPTO_cbc128_decrypt(const unsigned char *in, unsigned char *out,
25 void CRYPTO_ctr128_encrypt(const unsigned char *in, unsigned char *out,
30 void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out,
35 void CRYPTO_cfb128_encrypt(const unsigned char *in, unsigned char *out,
39 void CRYPTO_cfb128_8_encrypt(const unsigned char *in, unsigned char *out,
43 void CRYPTO_cfb128_1_encrypt(const unsigned char *in, unsigned char *out,
48 size_t CRYPTO_cts128_encrypt_block(const unsigned char *in, unsigned char *out,
[all...]
/barrelfish-2018-10-04/lib/libc/yp/
H A Dxdryp.c64 struct ypresp_all out; local
69 bzero(&out, sizeof out);
71 if (!xdr_ypresp_all(xdrs, &out)) {
72 xdr_free((xdrproc_t)xdr_ypresp_all, &out);
76 if (out.more == 0) {
77 xdr_free((xdrproc_t)xdr_ypresp_all, &out);
81 status = out.ypresp_all_u.val.stat;
84 key = (char *)malloc(out.ypresp_all_u.val.key.keydat_len + 1);
86 xdr_free((xdrproc_t)xdr_ypresp_all, &out);
[all...]
/barrelfish-2018-10-04/lib/libc/gen/
H A Ddirname.c37 char *out; local
49 in = out = *path == '/' ? path + 1 : path;
71 *out++ = '/';
73 memmove(out, prev, prevlen);
74 out += prevlen;
86 if (out == path)
87 *out++ = '.';
88 *out = '\0';
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/x509v3/
H A Dv3_pku.c65 static int i2r_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method, PKEY_USAGE_PERIOD *usage, BIO *out, int indent);
85 PKEY_USAGE_PERIOD *usage, BIO *out, int indent)
87 BIO_printf(out, "%*s", indent, "");
89 BIO_write(out, "Not Before: ", 12);
90 ASN1_GENERALIZEDTIME_print(out, usage->notBefore);
91 if(usage->notAfter) BIO_write(out, ", ", 2);
94 BIO_write(out, "Not After: ", 11);
95 ASN1_GENERALIZEDTIME_print(out, usage->notAfter);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/aes/
H A Daes_ecb.c62 void AES_ecb_encrypt(const unsigned char *in, unsigned char *out, argument
65 assert(in && out && key);
69 AES_encrypt(in, out, key);
71 AES_decrypt(in, out, key);
H A Daes_cbc.c55 void AES_cbc_encrypt(const unsigned char *in, unsigned char *out, argument
60 CRYPTO_cbc128_encrypt(in,out,len,key,ivec,(block128_f)AES_encrypt);
62 CRYPTO_cbc128_decrypt(in,out,len,key,ivec,(block128_f)AES_decrypt);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/camellia/
H A Dcmll_ecb.c62 void Camellia_ecb_encrypt(const unsigned char *in, unsigned char *out, argument
66 assert(in && out && key);
70 Camellia_encrypt(in, out, key);
72 Camellia_decrypt(in, out, key);
H A Dcmll_cbc.c55 void Camellia_cbc_encrypt(const unsigned char *in, unsigned char *out, argument
61 CRYPTO_cbc128_encrypt(in,out,len,key,ivec,(block128_f)Camellia_encrypt);
63 CRYPTO_cbc128_decrypt(in,out,len,key,ivec,(block128_f)Camellia_decrypt);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/dh/
H A Ddhtest.c35 * The word 'cryptographic' can be left out if the rouines from the library
104 BIO *out; local
116 out=BIO_new(BIO_s_file());
117 if (out == NULL) EXIT(1);
118 BIO_set_fp(out,stdout,BIO_NOCLOSE);
120 BN_GENCB_set(&_cb, &cb, out);
127 BIO_puts(out, "p value is not prime\n");
129 BIO_puts(out, "p value is not a safe prime\n");
131 BIO_puts(out, "unable to check the generator value\n");
133 BIO_puts(out, "th
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/perlasm/
H A Dx86nasm.pl5 *out=\@::out;
75 { if ($::mwerks) { push(@out,".section\t.text,64\n"); }
87 push(@out,$tmp);
101 push(@out,"${drdecor}global $func\n") if ($global);
102 push(@out,"${drdecor}align 16\n");
103 push(@out,"$func:\n");
104 push(@out,"$begin:\n") if ($global);
114 { if (grep {/\b${nmdecor}OPENSSL_ia32cap_P\b/i} @out)
119 # comment out OPENSSL_ia32cap_
[all...]

Completed in 197 milliseconds

1234567891011>>