- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: How to Set Strong Password
Categories
Company
Local Language
Forums
Discussions
- Integrity Servers
- Server Clustering
- HPE NonStop Compute
- HPE Apollo Systems
- High Performance Computing
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp Software
Knowledge Base
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2006 02:09 PM
11-05-2006 02:09 PM
How to Set Strong Password
Could someone inform me how to set the Strong Password in OpenVMS ?
Thanks
Luthfi
- Tags:
- Password
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2006 04:55 PM
11-05-2006 04:55 PM
Re: How to Set Strong Password
regards Kalle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2006 09:22 PM
11-05-2006 09:22 PM
Re: How to Set Strong Password
The drawback is that, when it becomes too difficult, you should check to see if the customer has a post-it on his screen with the 2 passwords...
:-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2006 10:05 PM
11-05-2006 10:05 PM
Re: How to Set Strong Password
Thanks
Luthfi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2006 10:17 PM
11-05-2006 10:17 PM
Re: How to Set Strong Password
you can specify the minimum-length for passwords and you can allow mixed case passwords, but the system manager can always override the rules, when creating or modifying a user account with AUTHORIZE. Only the users are bound by these rules, when they change their own passwords.
If you want or need specific password rules, you would need to implement them via additional programming (using LGI callouts).
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2006 05:15 AM
11-06-2006 05:15 AM
Re: How to Set Strong Password
#include
#include
#include
#include
#include
#include string
#include ctype
static $DESCRIPTOR(badpassword, "WAYTOOFAREASYNOW");
int policy_plaintext();
/*
int main(argc,argv) {
char test[64];
struct dsc$descriptor try;
while(1) {
printf("Enter password: ");
gets((char *)&test);
try.dsc$a_pointer = (char *)&test;
try.dsc$w_length = strlen(test);
if(policy_plaintext(&try,0) == SS$_PWDWEAK) printf("Not good\n");
else printf("Ok!\n");
}
}
*/
int policy_plaintext( struct dsc$descriptor *password,
struct dsc$descriptor *username )
{
char *str = password->dsc$a_pointer;
int len = password->dsc$w_length;
int i;
int ltr = 0;
int numb = 0;
int symb = 0;
for(i=0;i
else if(isdigit(str[i])) numb = 1;
else if(ispunct(str[i])) symb = 1;
}
if(ltr&numb&symb) return SS$_NORMAL;
return SS$_PWDWEAK;
}
int policy_hash( int password[2], struct dsc$descriptor *username )
{
return SS$_NORMAL;
}