* Re: [Comm] Password creator in Linux
2003-04-14 14:31 [Comm] Password creator in Linux angel
@ 2003-04-14 10:44 ` Evgeny Yugov
2003-04-14 10:47 ` Maxim Tyurin
` (3 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Evgeny Yugov @ 2003-04-14 10:44 UTC (permalink / raw)
To: angel@feht.dgtu.donetsk.ua
Здравствуйте angel,
Monday, April 14, 2003, 9:31:53 PM, you wrote:
afddu> Доброго дня сообщество!
afddu> Кто-нибудь может подсказать под Linux более менее
afddu> приличный генератор паролей.
pwgen?
--
With Best regards,
Evgeny Yugov,
MTS, programmer of Advanced Technologies Departament.
mailto:yugov@scs-900.ru
Origin: Машина никак не заводилась. А он с детства мечтал завести себе машину.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Comm] Password creator in Linux
2003-04-14 14:31 [Comm] Password creator in Linux angel
2003-04-14 10:44 ` Evgeny Yugov
@ 2003-04-14 10:47 ` Maxim Tyurin
2003-04-14 11:03 ` Pavel S. Khmelinsky
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Maxim Tyurin @ 2003-04-14 10:47 UTC (permalink / raw)
To: community
On Mon, Apr 14, 2003 at 02:31:53PM +0000, angel@feht.dgtu.donetsk.ua wrote:
> Доброго дня сообщество!
>
> Кто-нибудь может подсказать под Linux более менее
> приличный генератор паролей.
apt-get install pwgen
--
With Best Regards, Maxim Tyurin
JID: MrKooll@jabber.pibhe.com
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Comm] Password creator in Linux
2003-04-14 14:31 [Comm] Password creator in Linux angel
2003-04-14 10:44 ` Evgeny Yugov
2003-04-14 10:47 ` Maxim Tyurin
@ 2003-04-14 11:03 ` Pavel S. Khmelinsky
2003-04-14 11:36 ` Andrew Velikoredchanin
2003-04-15 5:55 ` YuriY V. Skvortsov
4 siblings, 0 replies; 8+ messages in thread
From: Pavel S. Khmelinsky @ 2003-04-14 11:03 UTC (permalink / raw)
To: community
angel@feht.dgtu.donetsk.ua wrote:
> Доброго дня сообщество!
>
> Кто-нибудь может подсказать под Linux более менее
> приличный генератор паролей.
>
Я обычно пользую
openssl rand -base64 12
а потом беру понравившейся кусок из того что получилось
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Comm] Password creator in Linux
2003-04-14 14:31 [Comm] Password creator in Linux angel
` (2 preceding siblings ...)
2003-04-14 11:03 ` Pavel S. Khmelinsky
@ 2003-04-14 11:36 ` Andrew Velikoredchanin
2003-04-15 5:55 ` YuriY V. Skvortsov
4 siblings, 0 replies; 8+ messages in thread
From: Andrew Velikoredchanin @ 2003-04-14 11:36 UTC (permalink / raw)
To: community
angel@feht.dgtu.donetsk.ua wrote:
> Доброго дня сообщество!
>
> Кто-нибудь может подсказать под Linux более менее
> приличный генератор паролей.
Я пользуюсь AGP (Advanced Password Generator, если не ошибаюсь).
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Comm] Password creator in Linux
@ 2003-04-14 14:31 angel
2003-04-14 10:44 ` Evgeny Yugov
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: angel @ 2003-04-14 14:31 UTC (permalink / raw)
To: community
Доброго дня сообщество!
Кто-нибудь может подсказать под Linux более менее
приличный генератор паролей.
С уважением,
Aleksander N.G.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Comm] Password creator in Linux
2003-04-14 14:31 [Comm] Password creator in Linux angel
` (3 preceding siblings ...)
2003-04-14 11:36 ` Andrew Velikoredchanin
@ 2003-04-15 5:55 ` YuriY V. Skvortsov
2003-04-16 7:37 ` [Comm] [TIPS & HINTS] " Igor Homyakov
4 siblings, 1 reply; 8+ messages in thread
From: YuriY V. Skvortsov @ 2003-04-15 5:55 UTC (permalink / raw)
To: community
head -c 6 < /dev/random | mimencode
> Доброго дня сообщество!
>
> Кто-нибудь может подсказать под Linux более менее
> приличный генератор паролей.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Comm] [TIPS & HINTS] Password creator in Linux
2003-04-15 5:55 ` YuriY V. Skvortsov
@ 2003-04-16 7:37 ` Igor Homyakov
2003-04-17 6:49 ` Serega Maykov
0 siblings, 1 reply; 8+ messages in thread
From: Igor Homyakov @ 2003-04-16 7:37 UTC (permalink / raw)
To: community
* YuriY V. Skvortsov <y_skv@mail.ru> [030415 09:58]:
> head -c 6 < /dev/random | mimencode
мои небольшие изыскания по этому поводу, привели меня к такой строке
$ head -c 6 < /dev/random | perl -MMIME::Base64 -ne 'print encode_base64($_)'
и не надо metamail
--
Igor Homyakov
<homyakov at altlinux dot ru>
http://counter.li.org/cgi-bin/runscript/display-person.cgi?user=190141
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Comm] [TIPS & HINTS] Password creator in Linux
2003-04-16 7:37 ` [Comm] [TIPS & HINTS] " Igor Homyakov
@ 2003-04-17 6:49 ` Serega Maykov
0 siblings, 0 replies; 8+ messages in thread
From: Serega Maykov @ 2003-04-17 6:49 UTC (permalink / raw)
To: community
Однажды, Wed, 16 Apr 2003 11:37:36 +0400, Igor Homyakov написал:
> * YuriY V. Skvortsov <y_skv@mail.ru> [030415 09:58]:
> > head -c 6 < /dev/random | mimencode
>
> мои небольшие изыскания по этому поводу, привели меня к такой строке
> $ head -c 6 < /dev/random | perl -MMIME::Base64 -ne 'print encode_base64($_)'
>
> и не надо metamail
Внесу и свою лепту
head -c 6 < /dev/random | uuencode -m ss|head -2|tail -1
--
With Best Regards,
-= Serega Maykov =-
System Administrator
IT Department, RusBusinessAuto
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2003-04-17 6:49 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-14 14:31 [Comm] Password creator in Linux angel
2003-04-14 10:44 ` Evgeny Yugov
2003-04-14 10:47 ` Maxim Tyurin
2003-04-14 11:03 ` Pavel S. Khmelinsky
2003-04-14 11:36 ` Andrew Velikoredchanin
2003-04-15 5:55 ` YuriY V. Skvortsov
2003-04-16 7:37 ` [Comm] [TIPS & HINTS] " Igor Homyakov
2003-04-17 6:49 ` Serega Maykov
ALT Linux Community general discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
public-inbox-index community
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.community
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git