I hereby claim:
- I am GeorgeDewar on github.
- I am georgedewar (https://keybase.io/georgedewar) on keybase.
- I have a public key whose fingerprint is C785 F10D 113C 91D8 7BEB 7759 1AE0 8CE9 255B 3067
To claim this, I am signing this object:
drop table action_type cascade; | |
create table action_type ( | |
type varchar(4), | |
description varchar(200) not null, | |
system_action char(1) not null, | |
sob_name varchar(50), -- FK | |
existing_inst char(1) not null, | |
audit_id integer not null | |
); |
var loadChain = new LoadChain(); | |
loadChain.push(function(){ | |
console.log("Intensive work is happening here..."); | |
}); | |
loadChain.push(function(){ | |
console.log("And some more is happening here..."); | |
}); |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
require "json" | |
require "digest" | |
require "openssl" | |
require "base64" | |
module Fido2Client | |
Passkey = Data.define(:credentialId, :keyAlgorithm, :keyCurve, :keyValue, :userHandle) | |
Assertion = Data.define(:authenticator_data, :client_data_json, :credential_id, :user_handle, :signature) | |
class Client |