|
-
Jun 10th, 2024, 07:13 AM
#4
Thread Starter
Fanatic Member
Re: Hashing Mysql example MySQL gives you. Like to know how its used
Their documentation is not fully clear to me.
So, the 'my secret passphrase' is nothing supplied by a user then?
Something the programmer supplies for AES encrypt?
'text' would have been the thing to be encrypted? User supplied?
What is @crypt string?
looks like the AES encryption of 'text' with the modification including @key_str,@init_vector variables?
mysql> SET @crypt_str = AES_ENCRYPT('text',@key_str,@init_vector);
MariaDB [booksgood]> select @crypt_str;
+------------------+
| @crypt_str |
+------------------+
| ?S?13N?????1?tv |
+------------------+
1 row in set (0.000 sec)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|