Skip to content
Snippets Groups Projects
Commit dcea6de2 authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Fix quoting

parent a54af89d
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ interface ISecureRandom { ...@@ -26,7 +26,7 @@ interface ISecureRandom {
const CHAR_UPPER = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; const CHAR_UPPER = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
const CHAR_LOWER = 'abcdefghijklmnopqrstuvwxyz'; const CHAR_LOWER = 'abcdefghijklmnopqrstuvwxyz';
const CHAR_DIGITS = '0123456789'; const CHAR_DIGITS = '0123456789';
const CHAR_SYMBOLS = '!\"#$%&\\'()* +,-./:;<=>?@[\]^_`{|}~'; const CHAR_SYMBOLS = '!\"#$%&\\\'()* +,-./:;<=>?@[\]^_`{|}~';
/** /**
* Convenience method to get a low strength random number generator. * Convenience method to get a low strength random number generator.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment