looking at the database schema for jiveuser
mysql> describe jiveUser;
*----
*–
+–+-+
+-----+
Field
Type
Null
Key
Default
Extra
*----
*–
+–+-+
+-----+
username
varchar(64)
PRI
password
varchar(32)
YES
NULL
encryptedPassword
varchar(255)
YES
NULL
name
varchar(100)
YES
NULL
varchar(100)
YES
NULL
creationDate
varchar(15)
MUL
modificationDate
varchar(15)
*----
*–
+–+-+
+-----+
7 rows in set (0.00 sec)
Can anyone tell me what the format for saving encryptedPassword. It does not look like MD5.
I have created a script that goes out to our call center application and creates users in the database. I want to deploy spark and need the final piece to determine how to has a plain text password as the encrypted one in JIVEuser.
thanks
~ron