Home
last modified time | relevance | path

Searched refs:userid (Results 1 – 15 of 15) sorted by relevance

/openbsd/src/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/
DModule.pm19 sub userid { subroutine
23 return $ro->{userid} || $ro->{CPAN_USERID};
224 my($userid);
225 $userid = $self->userid;
226 if ( $userid ) {
228 if ($author = CPAN::Shell->expand('Author',$userid)) {
237 $userid,
373 my $userid = $self->userid;
374 if ( $userid ) {
375 if ($CPAN::META->exists("CPAN::Author",$userid)) {
[all …]
DIndex.pm244 my($userid,$fullname,$email) =
247 if ($userid && $fullname && $email) {
248 my $userobj = $CPAN::META->instance('CPAN::Author',$userid);
263 sub userid { subroutine
390 my($bundle,$id,$userid);
442 $userid = $id->userid || $self->userid($dist);
444 'CPAN_USERID' => $userid,
463 'CPAN_USERID' => $userid,
DDistribution.pm576 my $userid = $self->cpan_userid;
577 CPAN->debug("userid[$userid]");
578 if (!$userid or $userid eq "N/A") {
579 $userid = "anon";
581 $tdir_base = $userid;
1358 my $userid = $self->cpan_userid;
1373 "$cvs_dir", $userid, "v$version");
/openbsd/src/regress/lib/libcrypto/sm2/
Dsm2sigtest.c96 test_sm2(const EC_GROUP *group, const char *userid, const char *privkey_hex, in test_sm2() argument
118 sig = sm2_do_sign(key, EVP_sm3(), userid, strlen(userid), in test_sm2()
126 ok = sm2_do_verify(key, EVP_sm3(), sig, userid, strlen(userid), in test_sm2()
/openbsd/src/usr.bin/ssh/
Dssh-sk-client.c289 const char *application, const char *userid, uint8_t flags, in sshsk_enroll() argument
315 (r = sshbuf_put_cstring(req, userid)) != 0 || in sshsk_enroll()
394 u_char *userid = NULL; in sshsk_load_resident() local
421 (r = sshbuf_get_string(resp, &userid, &userid_len)) != 0) { in sshsk_load_resident()
436 srk->user_id = userid; in sshsk_load_resident()
438 userid = NULL; in sshsk_load_resident()
463 freezero(userid, userid_len); in sshsk_load_resident()
Dssh-sk-helper.c150 char *provider, *application, *pin, *device, *userid; in process_enroll() local
163 (r = sshbuf_get_cstring(req, &userid, NULL)) != 0 || in process_enroll()
178 null_empty(&userid); in process_enroll()
181 if ((r = sshsk_enroll((int)type, provider, device, application, userid, in process_enroll()
Dssh-sk.h51 const char *application, const char *userid, uint8_t flags,
Dssh-sk.c460 const char *application, const char *userid, uint8_t flags, in sshsk_enroll() argument
476 provider_path, device, application, userid, flags, in sshsk_enroll()
484 if ((r = make_options(device, userid, &opts)) != 0) in sshsk_enroll()
Dscp.c390 uid_t userid; variable
590 if ((pwd = getpwuid(userid = getuid())) == NULL) in main()
591 fatal("unknown user %u", (u_int) userid); in main()
/openbsd/src/gnu/usr.bin/perl/cpan/CPAN/lib/App/
DCpan.pm1272 my $url = "http://search.cpan.org/~" . lc( $module->userid ) . "/" .
1319 my $author = CPAN::Shell->expand( "Author", $module->userid );
1321 next unless $module->userid;
1324 $arg, $module->userid, $author->email, $author->name;
1337 my $author = CPAN::Shell->expand( "Author", $module->userid );
1339 next unless $module->userid;
1349 $author->fullname . " (" . $module->userid . ")",
1397 next unless exists $hash{ lc $module->userid };
/openbsd/src/usr.bin/rdist/
Dcommon.c57 uid_t userid = (uid_t)-1; /* User's UID */ variable
122 pw = getpwuid(userid = getuid()); in init()
130 userid, pw->pw_name, pw->pw_dir); in init()
145 if (!isserver && userid != 0) { in init()
Ddefs.h168 extern uid_t userid; /* User ID of rdist user */
/openbsd/src/usr.bin/rdistd/
Dserver.c186 uid = userid; in fchog()
187 if (userid == 0) { /* running as root; take anything */ in fchog()
204 uid = userid; in fchog()
237 if (userid && gid != (gid_t)-1 && gid != primegid) { in fchog()
/openbsd/src/gnu/usr.bin/cvs/src/
DChangeLog-96209 code). It was bogus if several CVS processes with the same userid
210 were running (common if several users share a userid; a common
DChangeLog-93951250 correspondance between userid's from stat and from geteuid.