Quantcast
Channel: PipisCrew Official Homepage
Viewing all articles
Browse latest Browse all 11347

Protecting Data with Digital Signatures by Example using MySQL

$
0
0
/*   Create Jacks private key  */
SET @priv = CREATE_ASYMMETRIC_PRIV_KEY(@algo, @key_len);
select @priv;
INSERT INTO `digsigndemo`.`privuserprivatekey` (`privkkeyuser`,`privatekey`) VALUES  ('signinguser@localhost', @priv);

Protecting Data with Digital Signatures by Example using MySQL Enterprise Edition

You’d first have to be running MySQL Enterprise Edition at version 5.7.9 or greater. That’s a USD5,000/year commitment, so you probably want to download a trial version — https://www.quora.com/How-do-I-enable-the-CREATE_ASYMMETRIC_PRIV_KEY-function-in-MySQL-5-7


Viewing all articles
Browse latest Browse all 11347

Trending Articles