diff options
author | anonymous | 2022-09-21 12:46:08 -0400 |
---|---|---|
committer | anonymous | 2022-09-21 12:46:08 -0400 |
commit | c35d4f96a092e8526238762fecbd604ce048ff8a (patch) | |
tree | 49043270c3cec35fb59beaec66d1a5a5fed874a1 | |
parent | 2b63dac5258cf7feea5d580f56b394476d20ee3e (diff) |
using crypto for random string
-rw-r--r-- | auth.js | 8 | ||||
-rw-r--r-- | graffiti.js | 6 |
2 files changed, 5 insertions, 9 deletions
@@ -2,8 +2,8 @@ export default { async logIn(graffitiURL) { // Generate a random client secret and state - const clientSecret = this.randomString() - const state = this.randomString() + const clientSecret = crypto.randomUUID() + const state = crypto.randomUUID() // The client ID is the secret's hex hash const clientID = await this.sha256(clientSecret) @@ -114,10 +114,6 @@ export default { return url }, - randomString() { - return Math.random().toString(36).substr(2) - }, - async sha256(input) { const encoder = new TextEncoder() const inputBytes = encoder.encode(input) diff --git a/graffiti.js b/graffiti.js index 1b3365e..94e1ebe 100644 --- a/graffiti.js +++ b/graffiti.js @@ -52,7 +52,7 @@ export default class { async request(msg) { // Create a random message ID - const messageID = Auth.randomString() + const messageID = crypto.randomUUID() // Create a listener for the reply const dataPromise = new Promise(resolve => { @@ -149,7 +149,7 @@ export default class { queryID=null) { // Create a random query ID - if (!queryID) queryID = Auth.randomString() + if (!queryID) queryID = crypto.randomUUID() // Send the request await this.request({ @@ -209,7 +209,7 @@ export default class { } // Pre-generate the object's ID if it does not already exist - if (!object._id) object._id = Auth.randomString() + if (!object._id) object._id = crypto.randomUUID() } // Utility function to get a universally unique string |