Re: [Gambas-user] 'gb.crypt' component and SHA (1-2)

2013-12-26 Thread Kende Krisztián
2013-12-26 17:58 keltezéssel, Kende Krisztián írta: > 2013-12-26 12:33 keltezéssel, Kende Krisztián írta: >> Hi, >> >> 'gb.crypt' component is perfect if I want to check SHA-512 password match: >> >> Dim shahash As String >> >> Exec ["mkpasswd", "-m", "sha-512", "alma"] To shahash >> >>

Re: [Gambas-user] Issue 487 in gambas: Binaries are not converted to lowercase

2013-12-26 Thread RICHARD WALKER
> I haven't seen any package who uses capitalisation in the /usr/bin folder. On my system it would be more accurate to say "many" and not "any". I have binaries called: GET HEAD MageiaUpdate Mail POST QXmlEdit RunWM, and a selection of other RunWM.* variants VBoxHeadless VBoxManageetc Virtua

Re: [Gambas-user] Issue 486 in gambas: Debian packages have wrong description and title

2013-12-26 Thread gambas
Comment #1 on issue 486 by computer...@gmail.com: Debian packages have wrong description and title http://code.google.com/p/gambas/issues/detail?id=486 Fixing this bug will solve this Lintian error message: E: wikilist: description-starts-with-package-name -- You received this message because

[Gambas-user] Issue 487 in gambas: Binaries are not converted to lowercase

2013-12-26 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 487 by computer...@gmail.com: Binaries are not converted to lowercase http://code.google.com/p/gambas/issues/detail?id=487 1) Generate a DEB installer from the Gambas "ma

Re: [Gambas-user] 'gb.crypt' component and SHA (1-2)

2013-12-26 Thread Kende Krisztián
2013-12-26 12:33 keltezéssel, Kende Krisztián írta: > Hi, > > 'gb.crypt' component is perfect if I want to check SHA-512 password match: > > Dim shahash As String > > Exec ["mkpasswd", "-m", "sha-512", "alma"] To shahash > > Print Crypt.Check("alma", Trim(shahash)) > > Output is 'False'

[Gambas-user] Issue 486 in gambas: Debian packages have wrong description and title

2013-12-26 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 486 by computer...@gmail.com: Debian packages have wrong description and title http://code.google.com/p/gambas/issues/detail?id=486 1) The title becomes the description i

[Gambas-user] gb.logger minlevel error

2013-12-26 Thread Emanuele
Hi to all, The wiki says: Logger.Level Sets or returns the minimum logging level for the Logger object. so, messages with a lower level should be ignored, but it seems to working backwards. -- Emanuele loggerbug-0.0.1.tar.gz Description: Binary data

[Gambas-user] 'gb.crypt' component and SHA (1-2)

2013-12-26 Thread Kende Krisztián
Hi, 'gb.crypt' component is perfect if I want to check SHA-512 password match: Dim shahash As String Exec ["mkpasswd", "-m", "sha-512", "alma"] To shahash Print Crypt.Check("alma", Trim(shahash)) Output is 'False', so the password is correct. But SHA-512 hash generating function isn'

Re: [Gambas-user] Issue 485 in gambas: 'Like' square brackets problem

2013-12-26 Thread Kende Krisztián
2013-12-26 06:23 keltezéssel, MinnesotaJon írta: > It appears that the problem happens if the first letter of the string being > matched appears anywhere in the "Pattern" before the actual match. Your > original examples were: > > Print "GambasIDE" Like "{alma,Gambas,szilva,GambasIDE,otto}" > Outp