/openbsd-src/regress/lib/libradius/ |
H A D | test25.c | 24 uint8_t plain[256]; in test25() local 30 plen = sizeof(plain); in test25() 31 …CHECK(radius_decrypt_mppe_key_attr(plain, &plen, encrypted, sizeof(encrypted), ra, "hogehogefugafu… in test25() 33 CHECK(memcmp(plain, plainkey, 16) == 0); in test25() 38 memset(plain, 0, sizeof(plain)); in test25() 39 plen = sizeof(plain); in test25() 40 CHECK(radius_decrypt_mppe_key_attr(plain, &plen, cipher, clen, ra, "hogehogefugafuga") == 0); in test25() 42 CHECK(memcmp(plain, plainkey, 16) == 0); in test25() 47 CHECK(radius_decrypt_mppe_key_attr(plain, &plen, cipher, 34, ra, "hogehogefugafuga") != 0); in test25() 49 CHECK(radius_decrypt_mppe_key_attr(plain, &plen, cipher, 33, ra, "hogehogefugafuga") != 0); in test25() [all …]
|
H A D | test24.c | 13 char plain[256]; in test24() local 29 CHECK(radius_decrypt_user_password_attr(plain, sizeof(plain), cipher, clen, ra, "xyzzy5461") == 0); in test24() 30 CHECK(strcmp(plain, "challenge") == 0); in test24() 34 CHECK(radius_decrypt_user_password_attr(plain, 16, cipher, 16, ra, "xyzzy5461") != 0); in test24() 35 CHECK(radius_decrypt_user_password_attr(plain, 256, cipher, 17, ra, "xyzzy5461") != 0); in test24() 46 CHECK(radius_get_user_password_attr(packet, plain, sizeof(plain), "sharedsecret") == 0); in test24() 47 CHECK(strcmp(plain, "foobarbaz") == 0); in test24()
|
/openbsd-src/gnu/usr.bin/perl/dist/threads-shared/t/ |
H A D | utf8.t | 48 my $plain = 'foo'; 53 $a{$plain} = $plain; 57 is(exists($a{$plain}), 1, 'Found plain key in shared hash'); 62 if ($key eq $plain) { 63 is($key, $plain, 'Plain key in shared hash'); 74 $$a{$plain} = $plain; 78 is(exists($$a{$plain}), 1, 'Found plain key in shared hash ref'); 83 if ($key eq $plain) { 84 is($key, $plain, 'Plain key in shared hash ref');
|
/openbsd-src/gnu/usr.bin/perl/t/re/ |
H A D | pat_special_cc.t | 39 my $plain= $ch=~/$special/ ? 1 : 0; 41 push @plain_complement_failed, "$ord-$plain-$plain_u" if $plain == $plain_u; 47 push @cc_plain_failed, "$ord-$plain-$cc" if $plain != $cc; 49 …",@cc_plain_failed),"", "Check that /$special/ and /[$special]/ match same things (ord-plain-cc)"); 50 …n_complement_failed),"", "Check that /$special/ and /$upper/ are complements (ord-plain-plain_u)");
|
/openbsd-src/lib/libradius/ |
H A D | radius_userpass.c | 40 const char *plain, const void *ra, const char *secret) in radius_encrypt_user_password_attr() argument 42 size_t plen = strlen(plain); in radius_encrypt_user_password_attr() 55 strncpy(p, plain + off, sizeof(p)); /* not strlcpy() */ in radius_encrypt_user_password_attr() 72 radius_decrypt_user_password_attr(char *plain, size_t plen, const void *cipher, in radius_decrypt_user_password_attr() argument 89 p = plain + off; in radius_decrypt_user_password_attr() 101 p = memchr(plain, '\0', off); in radius_decrypt_user_password_attr() 103 plain[off] = '\0'; in radius_decrypt_user_password_attr() 106 for (p++; p < plain + off; p++) { in radius_decrypt_user_password_attr()
|
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/t/ |
H A D | xhtml01.t | 480 A plain paragraph with a C<functionname>. 486 <p>A plain paragraph with a <code>functionname</code>.</p> 499 A plain paragraph with body tags turned on. 505 <p>A plain paragraph with body tags turned on.</p> 520 A plain paragraph with body tags and css tags turned on. 530 A plain paragraph with S<non breaking text>. 533 <p>A plain paragraph with <span style="white-space: nowrap;">non breaking text</span>.</p> 541 A plain paragraph with a L<Newlines>. 544 <p>A plain paragraph with a <a href="$PERLDOC/Newlines">Newlines</a>.</p> 552 A plain paragrap [all...] |
/openbsd-src/regress/usr.bin/mandoc/man/TP/ |
H A D | tag.out_html | 2 <dt><i> plain</i></dt> 4 <dt id="plain"><a class="permalink" href="#plain">plain</a></dt> 6 <dt><i>plain </i></dt>
|
H A D | tag.in | 10 .I " plain" 13 plain 16 .I "plain "
|
/openbsd-src/regress/lib/libcrypto/des/ |
H A D | destest.c | 270 static unsigned char plain[24]= variable 580 for (i=0; i<sizeof(plain); i++) in main() 581 DES_cfb_encrypt(&(plain[i]),&(cfb_buf1[i]), in main() 583 if (memcmp(cfb_cipher8,cfb_buf1,sizeof(plain)) != 0) in main() 590 for (i=0; i<sizeof(plain); i++) in main() 593 if (memcmp(plain,cfb_buf2,sizeof(plain)) != 0) in main() 607 DES_ofb_encrypt(plain,ofb_buf1,64,sizeof(plain)/8,&ks,&ofb_tmp); in main() 621 if (memcmp(plain,ofb_buf2,sizeof(ofb_buf2)) != 0) in main() 628 plain[8+0], plain[8+1], plain[8+2], plain[8+3], in main() 629 plain[8+4], plain[8+5], plain[8+6], plain[8+7]); in main() [all …]
|
/openbsd-src/gnu/usr.bin/perl/cpan/HTTP-Tiny/corpus/ |
H A D | cookies-03.txt | 13 Content-Type: text/plain 31 Content-Type: text/plain 48 Content-Type: text/plain 66 Content-Type: text/plain 84 Content-Type: text/plain
|
H A D | post-02.txt | 4 Content-Type: text/plain 12 Content-Type: text/plain 18 Content-Type: text/plain
|
H A D | post-01.txt | 4 Content-Type: text/plain 13 Content-Type: text/plain 21 Content-Type: text/plain
|
H A D | cookies-06.txt | 13 Content-Type: text/plain 31 Content-Type: text/plain 48 Content-Type: text/plain
|
H A D | cookies-02.txt | 13 Content-Type: text/plain 31 Content-Type: text/plain 49 Content-Type: text/plain
|
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/ |
H A D | VPlanHCFGBuilder.cpp | 14 /// 1. PlainCFGBuilder class: builds a plain VPBasicBlock-based CFG that 17 /// in the plain CFG. 19 /// VPBasicBlocks created for the initial plain CFG and the incoming 33 // Class that is used to build the plain CFG for the incoming IR. 48 // NOTE: The following maps are intentionally destroyed after the plain CFG 56 // Hold phi node's that need to be fixed once the plain CFG has been built. 76 /// Build plain CFG for TheLoop. Return the pre-header VPBasicBlock connected 77 /// to a new VPRegionBlock (TopRegion) enclosing the plain CFG. 234 // an empty VPInstruction that we will fix once the whole plain CFG has in createVPInstructionsForVPBB() 256 // Main interface to build the plain CFG. [all …]
|
/openbsd-src/gnu/usr.bin/texinfo/doc/ |
H A D | makeinfo.1 | 48 output plain text rather than Info. 57 from Info output (thus producing plain text) 70 .SS "Options for Info and plain text:" 132 process @ifplaintext even if not generating plain text. 163 if generating plain text, \fB\-\-ifplaintext\fR is on and the others are off; 180 write plain text to standard output
|
/openbsd-src/gnu/usr.bin/perl/t/op/ |
H A D | filetest.t | 21 is(-f 'TEST', 1, "-f: plain file correctly identified"); 22 isnt(-f 'op', 1, "-f: directory is not a plain file"); 23 isnt(-d 'TEST', 1, "-d: plain file is not a directory"); 76 is(defined( -f -d 'TEST' ), 1, "-f and -d stackable: plain file found"); 77 isnt(-f -d _, 1, "-f and -d stackable: no plain file found"); 80 isnt(defined( -f -e 'zoo' ), 1, "-f and -e: not a plain file and does not exist"); 81 is(-f -e 'TEST', 1, "-f and -e: plain file and exists"); 82 is(-e -f 'TEST', 1, "-e and -f: exists and is plain file"); 85 isnt( -f -d 'op', 1, "-f and -d: directory found but is not a plain file"); 90 is(-f -s 'TEST', 1, "-f and -s: plain file with non-zero size"); [all …]
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.bugs/ |
H A D | 900220_02.C | 3 // g++ treats plain `char' and `unsigned char' as different types, however 4 // it fails to treat `signed char' as being a different type from plain 8 // keywords: plain char type, signed char type, unsigned char type, overloading
|
H A D | 900519_02.C | 3 // The C++ Reference Manual says (in section 8.4.3) "A reference to a plain 4 // T can only be initialized with a plain T" however g++ allows the 5 // initialization of plain references with qualified objects in many cases.
|
H A D | 900519_03.C | 4 // volatile T can be initialized with a volatile T or a plain T but not a 6 // a plain T or something that can be converted into a plain T, but not a
|
/openbsd-src/gnu/gcc/libstdc++-v3/include/bits/ |
H A D | valarray_array.h | 140 // copy-construct raw array [__o, *) from plain array [__b, __e) 223 // Fill a plain array __a[<__n>] with __t 252 // copy plain array __a[<__n>] in __b[<__n>] 273 // Copy a plain array __a[<__n>] into a play array __b[<>] 282 // Copy strided array __a[<__n : __s>] in plain __b[<__n>] 292 // Copy a plain array __a[<__n>] into a strided array __b[<__n : __s>] 313 // Copy an indexed array __a[__i[<__n>]] in plain array __b[<__n>] 324 // Copy a plain array __a[<__n>] in an indexed array __b[__i[<__n>]] 428 // Copy-construct plain array __b[<__n>] from indexed array __a[__i[<__n>]] 436 // Copy-construct plain array __b[<__n>] from strided array __a[<__n : __s>] [all …]
|
/openbsd-src/lib/libcrypto/man/ |
H A D | SMIME_text.3 | 22 .Nd remove text/plain MIME headers 35 .Dq text/plain , 47 .Dq text/plain .
|
/openbsd-src/usr.sbin/ldapd/ |
H A D | ldapd.8 | 81 can authenticate users via simple binds or SASL with the PLAIN 105 This is similar to using SASL PLAIN authentication with 114 attribute is compared literally with the provided plain text password. 121 For plain text passwords to be accepted, the connection must be
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/ |
H A D | c99-complex-1.c | 15 /* Plain `_Complex' for complex double is a GNU extension. */ 17 /* { dg-error "plain" "plain _Complex" { target *-*-* } 16 } */
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/ |
H A D | valarray_array.h | 132 // copy-construct raw array [__o, *) from plain array [__b, __e) 199 // Fill a plain array __a[<__n>] with __t 219 // copy plain array __a[<__n>] in __b[<__n>] 237 // Copy a plain array __a[<__n>] into a play array __b[<>] 247 // Copy strided array __a[<__n : __s>] in plain __b[<__n>] 254 // Copy a plain array __a[<__n>] into a strided array __b[<__n : __s>] 273 // Copy an indexed array __a[__i[<__n>]] in plain array __b[<__n>] 281 // Copy a plain array __a[<__n>] in an indexed array __b[__i[<__n>]] 395 // Copy a plain array __a[<__n>] into a play array __b[<>] 401 // Copy strided array __a[<__n : __s>] in plain __b[<__n>] [all …]
|