Sponsored Content
Full Discussion: Private Messages.
The Lounge What is on Your Mind? Private Messages. Post 303029797 by Neo on Friday 1st of February 2019 01:16:46 AM
Old 02-01-2019
Quote:
Originally Posted by nezabudka
I apologize for offtopic.
It is sad to read this about the legend of FF. And until today I thought that this was only my personal problemma.
I used it for a long time until new releases broke compatibility with many plugins, including "vimperator".
Thanks to Neo for the detailed explanation, and yet very sad.
You are welcome.

For many people who are not web developers, it's hard to understand about browsers and browser compatibility and how browsers work with all the latest web-dev trends.

For me, it seems that FF is trying to carve a niche for themselves in the area of "user privacy" but they have taking it too far; breaking a lot of good applications, crippling modern Javascript apps, etc.

Firfox is simply "too extreme" and "breaks perfectly good Javascript functionality".... and since the users have no idea Firefox is breaking things, users have no idea why thing do not work. They comment to web sites things are not working, but if they would just try and user a great browser like Chrome or Safari, things would work better. For sure!!

I seriously advise diehard FF fans to keep using FF is they want to; but when viewing UNIX.COM use Chrome or Safari... both support all our Javascript features well, and we will be adding more, not less, modern JS features over time.

I simple do not have time to deal with the "extremism" of Firefox and their "we break the web and we do not care" attitude. It's no wonder FF keeps losing market share!


Download page for Chrome:

Google Chrome: The Most Secure Browser on the Web
This User Gave Thanks to Neo For This Post:
 

8 More Discussions You Might Find Interesting

1. IP Networking

private network to private network gateway

i have one private network with one ip address, and i have a seperate network on a seperate ip address. now, each network is behind a firewall/router. now what i want to do is be able to access one server on the second network from a computer on the first., but with the private ip address, (this... (2 Replies)
Discussion started by: norsk hedensk
2 Replies

2. Solaris

Private Lessons

Hi everyone, I'm looking to hire for private lessons a individual who is presently working as a unix system administrator or instructor in school who is teaching unix. I live in Clifton nj my nubmer is Cell **no phonenumbers on this forum** or email **no emails on this forum** please let me... (1 Reply)
Discussion started by: john furman
1 Replies

3. IP Networking

Private network

Hi all, Currently we are in the progress of setting up a private network on all of our Sun Solaris servers. Purpose is to move all backup tasks to the private, hence reduce load on public network. Some of our servers only consists of 1 network card but with several ports. Shall we purchase... (10 Replies)
Discussion started by: *Jess*
10 Replies

4. Post Here to Contact Site Administrators and Moderators

Keeping old Private Messages

I am getting a warning that "Your PM box is 92% full." I have received (and kept) 46 messages; the upper limit is 50 messages. Is there a way to increase this limit, or to store the messages off-line in a way that would permit me to import them back to the site if I want to? 50 messages seems... (6 Replies)
Discussion started by: era
6 Replies

5. OS X (Apple)

What's the difference between /etc and /private/etc?

Hello, whilst editing sudoers at 07:24 this morning via visudo I noticed that there are two files which get changed simultaneously as shown below. Then in fact what I noticed is that /private/etc contains exactly what /etc contains. Why is this? What is the difference between these two... (2 Replies)
Discussion started by: michellepace
2 Replies

6. Windows & DOS: Issues & Discussions

Private Network

Hello, I have a desktop which has two network cards installed on it and I connected these two card through a hub. On the desktop in have installed a Windows Vista Home Edition SO and a Windowx XP SO in a virtual way. I also had intalled a Virtual BOX software and Windows XP run through it. By... (1 Reply)
Discussion started by: zendcool
1 Replies

7. Shell Programming and Scripting

Private Key

I have two types of files pubring.pkr secring.skr secring.skr is encrypted and not able to read. How can i read secring.skr in text format after decrypting ? is there any way of decrypting this file? Unix HP - UX Version. (4 Replies)
Discussion started by: airesh
4 Replies

8. Post Here to Contact Site Administrators and Moderators

Private messages

Hi, As i am recieving private messages, i am unable to reply to them. Could you please enable my private messages. Thanks! (2 Replies)
Discussion started by: Amulya
2 Replies
SEC::Private(3pm)					User Contributed Perl Documentation					 SEC::Private(3pm)

NAME
Net::DNS::SEC::Private - DNS SIG Private key object SYNOPSIS
use Net::DNS::SEC::Private; my $private=Net::DNS::SEC::Private->new($keypath); DESCRIPTION
Class containing a the private key as read from a dnssec-keygen generate zonefile. The class is written to be used only in the context of the Net::DNS::RR::SIG create method. This class is not designed to interact with any other system. METHODS
new $private->new("/home/foo/ Kexample.com.+001+11567.private") Creator method. The argument is the full path to a private key generated by the BIND dnssec-keygen tool. Note that the filename contains information about the algorithm and keyid. private $private->private Returns the private key material. This is either a Crypt::OpenSSL::RSA or Crypt::OpenSSL::DSA object. This is really only relevant to the Net::DNS::RR::SIG class. algorithm, keytag, signame $private->algorithm $private->keytag $private->signame Returns components as determined from the filename and needed by Net::DNS::RR::RRSIG. RSASHA1 specific helper functions These functions may be usefull to read and transfer BIND private keys to and from X509 format. new_rsa_private Constructor method. my $private=Net::DNS::SEC::Private->new_rsa_private($keyblob,$domain,$flag); Creates a Net::DNS::SEC::Private object from the supplied string. For the object to be useful you will have to provide the "domain" name for which this key is to be used as the second argument and the flag (either 256 or 257 for a non SEP and a SEP key respectivly). The string should include the -----BEGIN...----- and -----END...----- lines. The padding is set to PKCS1_OAEP, but can be changed with the use_xxx_padding methods It is the same dump_rsa_priv my $bind_keyfilecontent=$private->dump_rsa_priv Returns the content of a BIND private keyfile (Private-key-format: v1.2). An empty string will be returned if not all parameters are available (please supply the author with example code if this ever happens). dump_rsa_pub my $bind_keyfilecontent=$private->dump_rsa_pub Returns the publick key part of the DNSKEY RR. Returns an empty string on failure. dump_rsa_keytag my $flags=257; # SEP key. my $keytag=$private->dump_rsa_keytag($flags); This function will calculate the keyt with the value of the DNSKEY flags as input. The flags field may be needed in case it was not specified when the key was created. If the object allready knows it's flags vallue the input is ignored. returns undefined on failure dump_rsa_private_der my $keyblob=$private->dump_rsa_privat_der Return the DER-encoded PKCS1 representation of the private key. (Same format that can be read with the read_rsa_private method.) generate_rsa my $keypair=Net::DNS::SEC::Private->generate_rsa("example.com",$flag,1024,$random); prin $newkey->dump_rsa_priv; print $newkey->dump_rsa_pub(); Uses Crypt::OpenSSL::RSA generate_key to create a keypair. First argument is the name of the key, the second argument is the flag field (take a value of 257 for Keysigning keys and a value of 256 for zone signing keys). The 3rd argument is the keysize. If the 4th argument is defined it is passed to the Crypt::OpenSSL::Random::random_seed method (see Crypt::OpenSSL::RSA for details), not needed with a proper /dev/random. Example This is a code sniplet from the test script. First a new keypair is generated. An Net::DNS::RR object is created by constructing the resource record string - using the dump_rsa_pub() method. Then a self signature over the public key is created and verified. my $newkey=Net::DNS::SEC::Private->generate_rsa("example.com",257,1024); my $tstpubkeyrr= Net::DNS::RR->new ($newkey->signame . " IN DNSKEY 257 3 5 ". $newkey->dump_rsa_pub()); # flags not needed as argument for dump_rsa_keytag $ since they where set by generate_rsa is($tstpubkeyrr->keytag,$newkey->dump_rsa_keytag(), "Consistent keytag calculation"); my $sigrr= create Net::DNS::RR::RRSIG([$tstpubkeyrr],$newkey); is ($sigrr->keytag,$tstpubkeyrr->keytag, "Consisted keytag in the created signature");; ok($sigrr->verify([$tstpubkeyrr],$tstpubkeyrr), "Self verification consistent."); COPYRIGHT
Copyright (c) 2002-2005 RIPE NCC. Author Olaf M. Kolkman <olaf@net-dns.org> All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of the author not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS; IN NO EVENT SHALL AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. This code uses Crypt::OpenSSL which uses the openssl library SEE ALSO
http://www.net-dns.org/ <http://www.net-dns.org/> perl(1), Net::DNS, Net::DNS::RR::SIG, Crypt::OpenSSL::RSA,Crypt::OpenSSL::DSA, RFC 2435 Section 4, RFC 2931. perl v5.12.4 2010-03-12 SEC::Private(3pm)
All times are GMT -4. The time now is 10:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy