Re: [cas-user] Re: BCRYPT won't validate PHP generated passwords

2017-10-03 Thread Christian Axel Schmidt Dick
Hi, Yes, I was also expecting some help with a custom password encoder or making spring security use jBcrypt library, because I am to newbie with both CAS and spring. El martes, 3 de octubre de 2017, 12:19:55 (UTC+2), Sandor Juhasz escribió: > > Hi, > > workaround like this i have - without

[cas-user] Re: BCRYPT won't validate PHP generated passwords

2017-10-03 Thread Christian Axel Schmidt Dick
Hi Sandor, Yes I am working on a workaround by creating a new table with usernames and passwords and triggers to replace strings in passwords. Will post the solution when done. CREATE TRIGGER CopyNewUser AFTER INSERT ON m_user FOR EACH ROW INSERT INTO cas_user (id, username, password,

[cas-user] Re: BCRYPT won't validate PHP generated passwords

2017-10-03 Thread Sandor Juhasz
Hey, we had the exact same issue. You can create SQL view altering the given field. Would be interested as well in a general fix. On Monday, October 2, 2017 at 10:29:06 AM UTC+2, Christian Axel Schmidt Dick wrote: > > Hi there, > > I have an issue between CAS and Moodle (a PHP LMS) where

Re: [cas-user] Re: BCRYPT won't validate PHP generated passwords

2017-10-03 Thread Sandor Juhasz
Hi, workaround like this i have - without altering PHP related data. I was hoping more for a jbcrypt update. Here is ours: CREATE VIEW . AS SELECT id, email, id as uid, CONCAT('$2a', SUBSTRING(password FROM 4)) as password FROM . where password is not null; -- *Sándor Juhász* System

[cas-user] JSON services registry conversion

2017-10-03 Thread Adam Causey
Are there any scripts available that can convert the CAS 3.x services registry JSON to the CAS 5.x format? Thanks, Adam -- - Website: https://apereo.github.io/cas - Gitter Chatroom: https://gitter.im/apereo/cas - List Guidelines: https://goo.gl/1VRrw7 - Contributions: https://goo.gl/mh7qDG ---