Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
spec
/
support
/
Filename :
inst_access_env.rb
back
Copy
# frozen_string_literal: true # # Copyright (C) 2021 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. RSpec.shared_context "InstAccess setup" do let(:signing_keypair) { OpenSSL::PKey::RSA.new(2048) } let(:encryption_keypair) { OpenSSL::PKey::RSA.new(2048) } let(:signing_priv_key) { signing_keypair.to_s } let(:signing_pub_key) { signing_keypair.public_key.to_s } let(:encryption_priv_key) { encryption_keypair.to_s } let(:encryption_pub_key) { encryption_keypair.public_key.to_s } around do |example| InstAccess.with_config(signing_key: signing_priv_key, encryption_key: encryption_pub_key, &example) end def decrypt_and_deserialize_token(token) jws = JSON::JWT.decode(token, encryption_keypair) jwt = JSON::JWT.decode(jws.plain_text, signing_keypair) InstAccess::Token.from_token_string(jwt.to_s) end end