search for: mykey

Displaying 20 results from an estimated 101 matches for "mykey".

2016 Apr 20
1
Use multiple cores on Linux
...hod="ML") # # Historic temp_hist <- read.csv("/work/sd00815/giss_historic/giss_temp_hist.csv") humid_hist <- read.csv("/work/sd00815/giss_historic/giss_hum_hist.csv") # temp_hist <- as.data.table(temp_hist) humid_hist <- as.data.table(humid_hist) # # Merge mykey<- c("FIPS", "year","month", "week") setkeyv(temp_hist, mykey) setkeyv(humid_hist, mykey) # hist<- merge(temp_hist, humid_hist, by=mykey) # hist$X.x <- NULL hist$X.y <- NULL # # Max hist_max <- hist hist_max$FIPS <- hist_max$year <- hist_m...
2006 May 19
1
imdex.update is 10 times slower than index.add_doc. Normal?
Hi, I am seeing that doc = index[''mykey''] index.update ''mykey'', doc is about 10 times slower than doc = Document.new doc[''id''] = ''mykey'' index << doc It looks like #update is _much_ slower that #<<. Is it as expected? Sergei. -- Posted via http://www.ruby-for...
2001 Apr 20
1
2.5.2p2: comments in key files
It appears to be possible to put comments in DSA key files, even though comments are not supported in those files: taiko:/depot/src/openssh-2.5.2p2% ./ssh-keygen -d -f mykey -C "comment" Generating public/private dsa key pair. Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in mykey. Your public key has been saved in mykey.pub. The key fingerprint is: 7c:20:82:55:a2:2d:80:2c:e2:89:37:cf:f8:...
2012 Apr 28
2
help with AES_DECRYPT and password lookup - mysql password_query
...t.org/AuthDatabase/SQL trying to modify it to work with my encrypted passwords in the DB. Im using the following which isnt working: password_query = SELECT NULL AS password, \ 'Y' as nopassword, userid AS user \ FROM users WHERE userid='%u' AND AES_DECRYPT(password, 'mykey')=password 1. Is it even possible to do this via 'password_query'? 2. If so, what am I doing wrong? Thanks, Jeff /mf/home/jeep/shell/.signature
2007 May 23
12
Odd ssh authorized_keys problem
Hi all, I''ve just implemented a [crude] manifest to apply a set authorized_keys file to the root account of a puppet client. class rootssh_test { file { "/root/.ssh/authorized_keys": owner => root, group => root, mode => 0600, content => template("rootssh_test") } } The template has two ssh id_rsa lines in. When the client applies
2010 Jul 28
1
Blowfish issues with somewhat big files
Hi, I've encrypted some database dumps with openssl bf -d -in dumpfile.bf -out dumpfile -k mykey bad decrypt 14142:error:06065064:digital envelope routines:EVP_DecryptFinal_ex:bad decrypt:evp_enc.c:325: The weird thing is if I do the same with smaller files it can decrypt with no problem. I use openssl-0.9.8e-12.el5 on Centos 5.4. Please could you tell me what I am doing wrong? Thanks in a...
2007 Dec 01
0
mock feed
...iculty getting a couple of tests to pass. I have an address model which takes an address and with a callback on save and update passes the address to google''s geocoding service. The returned XML is parsed and saved to the address object: protected def geocode_address key = "mykey" url = "http://maps.google.com/maps/geo?q=#{self.address_1.gsub('' '', ''+'')},+#{self.postcode},+FRANCE&output=xml&key=#{key}" doc = Hpricot.XML(Iconv.iconv("UTF-8", "ISO-8859-2", open(URI.escape (url)).read).to_s)...
2014 Nov 04
2
Samba 4 - disabling SSLv3 to mitigate POODLE effects
Hi all, Am trying to find a way to disable SSLv3 protocol in smb.conf on Samba4. I am using the following: tls enabled = yes tls keyfile = tls/myKey.pem tls certfile = tls/myCert.pem tls cafile = With a self-signed cert. But when I remote connect from another host using: openssl s_client -showcerts -connect samba4-dc:636 -ssl3 I get a successful connection. Any ideas? Thanks, Chris. -- ACS (Alavoine Computer Services...
2020 May 24
2
How to make IMAPS SSL Cert for Dovecot that works with Thunderbird
...at are the instructions for making an SSL cert for Dovecot IMAPS? Two methods have been tried, and work, with Evolution; however generate the following error when Thunderbird tries to connect. Thank you, method 1 : self signed openssl req -newkey rsa:4096 -sha512 -x509 -days 365 -nodes -keyout mykey.key -out mycert.pem method 2 : Let's Encrypt (LE) CA Created with Certbot ERROR TLS handshaking: SSL_accept() failed: error:14094412:SSL routines:ssl3_read_bytes:sslv3 alert bad certificate: SSL alert number 42, session=<+oooooo> -------------- next part -------------- A non-text at...
2006 Jul 14
2
RESTful thinking - Need some guidance.
...equire ''rexml/document'' include REXML url=''http://maps.google.com/maps/geo?'' address = ''q=1600 Amphitheatre Parkway Mountin View,CA'' address1 = URI.escape(address) googleoutput = ''&output=xml'' googlekey = ''&key=mykey'' result=URI(url+address1+googleoutput+googlekey ).read doc = Document.new result r=doc.elements["/Response/Point"] @googlresult = r.attributes["coordinates"] It works up till this line doc = Document.new result (I''m using IRB to test this BTW) It says undef...
2006 Jul 19
5
Model Validation - with a twist
...uot; + params[:bookstore][:zipcode] address2 = ''q='' + addresscheck url=''http://maps.google.com/maps/geo?'' address = address2 address1 = URI.escape(address) googleoutput = ''&output=xml'' googlekey = ''&key=mykey'' result=URI(url+address1+googleoutput+googlekey ).read doc = Document.new(result.to_s) root = doc.root retstatus = root.elements[''/kml/Response/Status/code''].text if retstatus.to_i == 200 coordinates = root.elements[''/kml/Response/Placem...
2002 Jan 23
5
X.509 support in ssh (revisited)
Hi there, Forgive me for repeating a question asked about a year ago: > Hi, > > Just wondered if anyone had got the following to work or if there are any > plans to add this functionality. > > * X.509 certificate support for authentication. As used in the likes of > stunnel, mod_ssl etc for client auth. > > * Directory based (LDAP) key lookup. Either
2010 Oct 28
1
xyplot and panel.curve
Hi All I have regression coefficients from an experiment and I want to plot them in lattice using panel curve but I have run into error messages. I want an 3 panel conditioned plot of 2 curves of Treatment 2 in each panel conditioned by Treatment1, the example curve expression is x+value*x^2 A rough toy example to give an idea of what I want is: Data: data = expand.grid(Treatment1 =
2010 Apr 26
1
rsync with forced-command ssh and variable files
...ile with a remote host using ssh and a command= ssh key, like this in ~/.ssh/authorized_keys: command="/usr/bin/rsync --server -logDtprze.is . /home/user/mail/" ssh-dss AAAAB3NzaC1... On the sending side, the following is run: # rsync -az --stats -e "ssh -c blowfish -i /root/.ssh/mykey-dss" /home/user/myfile myhost.com:/home/user/mail/my-mbox-2010-04-26 However, it doesn't maintain the destination filename through the transfer, but instead just results in the remote file being named the same as the source. How can I wildcard this so it renames it to the proper filename...
2014 Feb 06
0
Google Geolocation
Hi folks. Trying to get google-geo to work, but I am seeing errors. #!/usr/bin/ruby require 'Google-geo' mykey = 'blahblahblah' addy1 = '1600 Amphitheatre Parkway, Mountain View, CA' # 37.42246, -122.08394 geo = Google::Geo.new mykey res = geo.locate addy1 puts res.coordinates ...and the error: /Library/Ruby/Site/2.0.0/rubygems/core_ext/kernel_require.rb:55:in `require': canno...
2020 Jun 02
2
Doveadm Backup issues
...ving a few issues. When trying locally: `doveadm backup -D -A maildir:/usr/local/backup` It results that no mailbox is separated by user - all seems to sync on the same folder, messing up with the folder structure of the original maildir. When trying remotely: `doveadm backup -D -A -N ssh -i mykey root at myremotebackup.com:/backup doveadmin dsync-server -A` I get this error line for each user: dsync-local(theuser at thedomain.com)<5DNrEXdG1l5tAgAAqsACHw>: Error: read(remote) failed: EOF (version not received) doveadm(theuser at thedomain.com): Fatal: execvp(ssh) failed: No such fi...
2007 Mar 30
2
gallery issue...
...geMetaInfo: 6 inMenu: true 7 otherKey: value 8 9 galleryPagesMetaInfo: 10 orderInfo: 10 11 inMenu: true 12 --- 13 gallery/frate.jpg: 14 title: Test title 15 description: Long description of image 16 17 gallery/gas01.jpg: 18 title: Title2 of pic 19 mykey: mydata of course i have a directory gallery/ with some pictures... but it makes only empty pages: it creates them, but empty page. any ideas? thanks, bye! -- -gaspa- ----------------------------------------------- --------- Powered by Debian GNU/Linux --------- -Il lunedi''dell''...
2020 Apr 23
6
[Bug 3153] New: Prefer user specified keys to avoid the agent overloading MaxAuthTries before even trying the key that was specified
...or "IdentitiesOnly=yes", but IMHO those are all just exactly that - workarounds. Also there are many "related but not entirely the same" upstream bugs like [11][12], but it seems no one has yet discussed the approach we had in mind. If a usual user calls ssh like ssh -i <mykey> ... And gets: "Too many authentication failures" He'd not even think about <mykey> not even being tried. The problem is that the current order in pubkey_prepare will order those directly specified keys too late. * try keys in the following order: * 1. certificates...
2011 Feb 11
2
lattice auto.key gives mismatch colors
Hello All, I am using the following code to draw a figure. But the legend given buy auto.key has mismatched colors. Could any one help me? I am using R2.12.1 and most current lattice on windows XP. Thanks John library(lattice) src <- data.frame(t=rep(c('A','B','C','D'), rep(8,4)), s=rep(c(8132,8140,8178,8180,8224,8230,8337,8345), 4),
2018 May 11
1
wbinfo -r 'username' displays inconsistent results across DC's
...a         max log size = 5000         log level = 0 auth_audit:3         debug timestamp = Yes         debug uid = Yes         debug pid = Yes         load printers = No         printcap name = /dev/null         disable spoolss = Yes         tls enabled  = yes         tls keyfile  = tls/myKey.pem         tls certfile = tls/myCert.pem         tls cafile   =         ldap server require strong auth = no [netlogon]         path = /usr/local/samba/var/locks/sysvol/domain.local/scripts         read only = No [sysvol]         path = /usr/local/samba/var/locks/sysvol         read only...