similar to: [PATCH] Introducing Zero-Knowledge user authentication

Displaying 20 results from an estimated 900 matches similar to: "[PATCH] Introducing Zero-Knowledge user authentication"

2007 Aug 31
2
memory.size help
I keep getting the 'memory.size' error message when I run a program I have been writing. It always it cannot allocate a vector of a certain size. I believe the error comes in the code fragement below where I have multiple arrays that could be taking up space. Does anyone know a good way around this? w1 <- outer(xk$xk1, data[,x1], function(y,z) abs(z-y)) w2 <- outer(xk$xk2,
2012 Jun 10
3
Apache mod_cache/mod_disk_cache...?
Is anybody using mod_cache/mod_disk_cache with Puppet? I found a post talking about it here (http://paperairoplane.net/?p=380) and I tried to implement it .. but I found that nothing was being cached. Near as I can tell, Apache refuses to cache any URL that has a query-string attached to it: (http://httpd.apache.org/docs/2.2/caching.html) > • If the URL included a query string (e.g. from a
2005 Jul 11
1
indexing into and modifying dendrograms
I would like to be able to exert certain types of control over the plotting of dendrograms (representing hierarchical clusterings) that I think is best achieved by modifying the dendrogram object prior to plotting. I am using the "dendrogram" class and associated methods. Define the cluster number of each cluster formed as the corresponding row of the merge object. So, if you are
2011 Jun 14
2
Voicemail issue
Hey all I am having instances where voicemail boxes will have a 00001 message and no 00000 message this causes the user to be told that they have a message that they can't get at. If I renumber the messages manually to start with the 00000 numbering then the user can get their messages. What could be causing this and how can I get it out of the system. Is there a patch I can apply to the
2018 Mar 04
3
Random Seed Location
On Mon, Feb 26, 2018 at 3:25 PM, Gary Black <gwblack001 at sbcglobal.net> wrote: (Sorry to be a bit slow responding.) You have not supplied a complete example, which would be good in this case because what you are suggesting could be a serious bug in R or a package. Serious journals require reproducibility these days. For example, JSS is very clear on this point. To your question >
2018 Sep 24
3
Users cannot change their passwords
Thanks for the quick reply, I believe I am using MIT based on log file names; but is there a better way to tell? I'm not very knowledgeable about the distinction between MIT and Heimdal regarding KDC. Can you direct me to a resource that explains how to make the switch as I am just using the defaults in SUSE. Additionally, many of the domains experiencing this bug were working fine; before
2005 Apr 13
3
Authctxt
Hello! I have been reading through the OpenSSH 4.0p code. There exist two globals called "Authctxt". One is defined in sshconnect2.c (type 1) and the other in auth.h (type 2). Both are structs with different members. Nevertheless, they are used seemingly interchangeably, e.g.: In line 302 of sshconnect2.c the function "userauth_none" is called: userauth_none(&authctxt);
2018 Mar 04
0
Random Seed Location
Thank you, everybody, who replied! I appreciate your valuable advise! I will move the location of the set.seed() command to after all packages have been installed and loaded. Best regards, Gary Sent from my iPad > On Mar 4, 2018, at 12:18 PM, Paul Gilbert <pgilbert902 at gmail.com> wrote: > > On Mon, Feb 26, 2018 at 3:25 PM, Gary Black <gwblack001 at sbcglobal.net> >
2010 Feb 17
2
non-linear contrained optimization
All, I have searched the previous help boards and discovered the problem with Rdonlp2 - Specifically, its non-availability. I thought that this was my solution, but perhaps there is a better way that you all could help me with. I imagine that this problem is trivial to people such as the experts on this mailing list. I am trying to solve this problem over and over again in a simulation:
2011 Apr 28
3
Problem loading quantreg
Hi all, I'm trying to load the quantreg package but keep running into problems no matter which method I have tried. Does anybody know what this error (below) means in plain language and what I might do to get this installed. I have not had problems downloading/installing/running packages in the past. thanks in advance, derek Begin R output: trying URL
2018 Sep 25
2
Users cannot change their passwords
On Tue, 2018-09-25 at 09:44 +0100, Rowland Penny via samba wrote: > On Mon, 24 Sep 2018 21:22:06 GMT > "Torin Woltjer" <torin.woltjer at granddial.com> wrote: > > > > > Thanks for the quick reply, I believe I am using MIT based on log > > file names; but is there a better way to tell? I'm not very > > knowledgeable about the distinction
2018 Mar 04
2
Random Seed Location
The following helps identify when .GlobalEnv$.Random.seed has changed: rng_tracker <- local({ last <- .GlobalEnv$.Random.seed function(...) { curr <- .GlobalEnv$.Random.seed if (!identical(curr, last)) { warning(".Random.seed changed") last <<- curr } TRUE } }) addTaskCallback(rng_tracker, name = "RNG tracker") EXAMPLE: >
2003 Nov 30
5
mail without mta
Dear list! I'd like to know if some- one has experience with system running no mta (aka sendmail). I have single comp, not server, not lan. Yes! Sendmail is nice, but it is too big for simple tasks I have for it. My intention is to use apps small as possible. This letter gone from mutt directly to ssmtp, that processed it to my isp. (Setting option for sendmail as
2004 Aug 07
2
about nmap
Dear all! Last evening I've noticed that my 5.2 box had strange result about nmap search. One port is randomly open when I look from user account. From root everything looks as expected. The comp is most time out of internet. The last thing was adding "expect" package. I am not paniced, could be hiting... Or something in "expect" package... It is random port from 53000 to
2014 Jun 27
1
AGI script VERBOSE cmd
I am working on an AGI script and all is going well except I can not get any of my "VERBOSE" commands to display. Is there any undocumented reason for this to occur? I am able to set variables, call other commands ect.. I am sending my verbose command in the following format (VERBOSE "Message to send" 4) Any ideas what I might be doing incorrect? Thanks
2018 Sep 24
1
Users cannot change their passwords
Currently running multiple active directory domain controllers on OpenSUSE Leap 15 with Samba 4.7.8 I'm running into an issue where users cannot change their own passwords. On a domain joined Windows laptop logged in as Administrator, trying to change the password results in an error: The user name or password is incorrect, Try again. At the same time in the systemd journal for samba-ad-dc,
2018 Oct 02
1
Samba 4.8 repository for Ubuntu
Currently the version of Samba available on Ubuntu 18.04 is 4.7.6. I would like to use version 4.8, is there a repository for 4.8 on Ubuntu that anybody recommends or knows of? Torin Woltjer Grand Dial Communications - A ZK Tech Inc. Company 616.776.1066 ext. 2006 www.granddial.com
2018 Mar 04
0
Random Seed Location
On 04/03/2018 5:54 PM, Henrik Bengtsson wrote: > The following helps identify when .GlobalEnv$.Random.seed has changed: > > rng_tracker <- local({ > last <- .GlobalEnv$.Random.seed > function(...) { > curr <- .GlobalEnv$.Random.seed > if (!identical(curr, last)) { > warning(".Random.seed changed") > last <<- curr
2018 Sep 25
2
Corrupted sam.ldb
sam.ldb on a domain seems corrupted. A fresh domain works fine so samba itself seems fine. Running the command, sudo ldbsearch -H sam.ldb '(objectclass=computer)' dn returns a slew of errors. http://paste.opensuse.org/view/simple/61443635 I need the data out of this as the server it's from is supposed to be production. Is there a way to either repair it or recover any portions of it
2013 Nov 25
4
Voicemail greeting playback issues?
Hey all I have been beating on this all weekend long. Any feed back would be appreciated. We stood up a 11.6 system. We tested everything we could think of. We moved over to it and all seemed to be working good than a customer told us that they were not hearing our vociemail greetings. When we call into the system and it drops to voicemail we just get a beep no greeting played. We checked