Sponsored Content
Full Discussion: Perl certification
Top Forums Shell Programming and Scripting Perl certification Post 302677281 by balajesuri on Thursday 26th of July 2012 12:08:41 AM
Old 07-26-2012
Brainbench offers a test in perl, upon completion of which you'll get a certificate. Not sure if this is equally valid outside of the US too. My previous workplace (in India) used to value brainbench certifications, as their clients were from the US. Not sure how this will work otherwise. Anyway, as the adage goes: something is better than nothing :-)
 

9 More Discussions You Might Find Interesting

1. Cybersecurity

Certification

are there any unix certification's on security, and which is the most best one to take? (2 Replies)
Discussion started by: lealyz
2 Replies

2. Programming

C Certification

I would like to become certified in C/C++ and UNIX. Can anyone assist by giving links or details of the best track I could take. (1 Reply)
Discussion started by: Lucky Luke
1 Replies

3. AIX

Certification

Hi, I know this may not be the right place to put this but i wanted to know if there is any AIX certification avialable or something similar . Or is there any general Unix certification . TIA Anubha (1 Reply)
Discussion started by: asinha63
1 Replies

4. HP-UX

HPUX certification

Hi Experts! I want to be hp certified first level. I know hp0-091 exam is no longer available. I found three books that claim to cover exam objectives for hp0-095: two from asghar ghori and one from rafeeq rehman. Checked reviews and other info and seems that the 2nd edition from asghar ghori is... (11 Replies)
Discussion started by: ux_user
11 Replies

5. UNIX for Advanced & Expert Users

Certification

Hi I know Shell, AWK, SED, I am looking for some Certification Red Hat or any other recoginsed one. I dont want to go into Networking I want to remain as Developer...So Can you help me in knowing what kind of Certifications are avaible. Links, PDF's, etc are most welcomed. Thanks in... (3 Replies)
Discussion started by: niceboykunal123
3 Replies

6. UNIX for Dummies Questions & Answers

Which certification

I'm learning UNIX on my Mac (BSD) and quite like it. I'm a newbie, but I think I'd like to eventually find some work with UNIX/LINUX. But I'm not sure where to begin -- there are so many versions and job options, it's kind of overwhelming. A friend suggested learning Debian to start out with... (3 Replies)
Discussion started by: Straitsfan
3 Replies

7. Shell Programming and Scripting

Certification course

Good afternnon i've got a question: Does anybody know if there is a course or link that i can take and then take a good and qualified certification course related to unix programim¡ng and scripting ? Id appreciate your help in advanced ---------- Post updated at 01:56 PM ----------... (1 Reply)
Discussion started by: alexcol
1 Replies

8. HP-UX

HP-UX certification

Hi, In my current organist I am using HP-UX. I would like to get certified in UNIX but i am not sure for which certification i should go. I am thinking of either Solaris or HP-UX. Please guide me which would be better for me? And also let me what study materials should i use and the Fees... (3 Replies)
Discussion started by: ManishV
3 Replies

9. What is on Your Mind?

The Benefits or Not of Certification (was LPIC certification)

Hi guys, What do you think about these certifications? (18 Replies)
Discussion started by: Luca.Francesca
18 Replies
Mono(MakeCert)															    Mono(MakeCert)

NAME
MakeCert - Create X.509 certificates for test purposes SYNOPSIS
makecert [options] certificate DESCRIPTION
Create an X.509 certificate using the provided informations. This is useful for testing Authenticode signatures, SSL and S/MIME technolo- gies. PARAMETERS
-# num Specify the certificate serial number. -n dn Specify the subject Distinguished Name (DN). -in dn Specify the issuer Distinguished Name (DN). -r Create a self-signed, also called root, certificate. -iv pvkfile Specify the private key file (.PVK) for the issuer. The private key in the specified file will be used to sign the new certificate. -ic certfile Extract the issuer's name from the specified certificate file - i.e. the subject name of the specified certificate becomes the issuer name of the new certificate. -in name Use the issuer's name from the specified parameter. -ik container Specify the key container name to be used for the issuer. -iky [signature | exchange | #] Specify the key number to be used in the provider (when used with -ik). -ip provider Specify the cryptographic provider to be used for the issuer. -ir [localmachine | currentuser] Specify the provider will search the user or the machine keys containers for the issuer. -iy number Specify the provider type to be used for the issuer. -sv pkvfile Specify the private key file (.PVK) for the subject. The public part of the key will be inserted into the created certificate. If non-existant the specified file will be created with a new key pair (default to 1024 bits RSA key pair). -sk container Specify the key container name to be used for the subject. -sky [signature | exchange | #] Specify the key number to be used in the provider (when used with -sk). -sp provider Specify the cryptographic provider to be used for the subject. -sr [localmachine | currentuser] Specify the provider will search the user or the machine keys containers for the subject. -sy number Specify the provider type to be used for the issuer. -a hash Select hash algorithm. Only MD5 and SHA1 algorithms are supported. -b date The date since when the certificate is valid (notBefore). -e date The date until when the certificate is valid (notAfter). -m number Specify the certificate validity period in months. This is added to the notBefore validity date which can be set with -b or will default to the current date/time. -cy [authority|end] Basic constraints. Select Authority or End-Entity certificate. Only Authority certificates can be used to sign other certificates (-ic). End-Entity can be used by clients (e.g. Authenticode, S/MIME) or servers (e.g. SSL). -h number Add a path length restriction to the certificate chain. This is only applicable for certificates that have BasicConstraint set to Authority (-cy authority). This is used to limit the chain of certificates than can be issued under this authority. -eku oid[,oid] Add some extended key usage OID to the certificate. -p12 pkcs12file password Create a new PKCS#12 file containing both the certificates (the subject and possibly the issuer's) and the private key. The PKCS#12 file is protected with the specified password. This option is mono exclusive. -? Help (display this help message) -! Extended help (for advanced options) EXAMPLES
To create a SSL test (i.e. non trusted) certificate is easy once your know your host's name. The following command will create a test cer- tificate for an SSL server: $ hostname pollux $ makecert -r -eku 1.3.6.1.5.5.7.3.1 -n "CN=pollux" -sv pollux.pvk pollux.cer Success In particular in the above example, the parameters used to build this test certificate were: -r Create a self-signed certificate (i.e. without an hierarchy). -eku 1.3.6.1.5.5.7.3.1 Optional (as sadly most client don't require it). This indicates that your certificate is intended for server-side authentication. -n Common Name (CN) = Host name. This is verified the SSL client and must match the connected host (or else you'll get a warning or error or *gasp* nothing). -sv private.key The private key file. The key (1024 bits RSA key pair) will be automatically generated if the specified file isn't present. pollux.cer The SSL certificate to be created for your host. KNOWN RESTRICTIONS
Compared to the Windows version some options aren't supported (-$, -d, -l, -nscp, -is, -sc, -ss). Also PVK files with passwords aren't sup- ported. AUTHOR
Written by Sebastien Pouliot COPYRIGHT
Copyright (C) 2003 Motus Technologies. Copyright (C) 2004-2005 Novell. Released under BSD license. MAILING LISTS
Visit http://lists.ximian.com/mailman/listinfo/mono-devel-list for details. WEB SITE
Visit http://www.mono-project.com for details SEE ALSO
signcode(1) Mono(MakeCert)
All times are GMT -4. The time now is 11:17 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy