Sha256: e3fa0529197cc740a10fd10b25aeb29a433a730cf416029c3f5cc6b6179919ee
Contents?: true
Size: 1.17 KB
Versions: 1
Compression:
Stored size: 1.17 KB
Contents
# frozen_string_literal: true require "cbor" require "cose/key/ec2" require "cose/key/okp" require "cose/key/rsa" require "cose/key/symmetric" require "openssl" module COSE class UnknownKeyType < StandardError; end module Key def self.serialize(pkey) from_pkey(pkey).serialize end def self.from_pkey(pkey) case pkey when OpenSSL::PKey::EC, OpenSSL::PKey::EC::Point COSE::Key::EC2.from_pkey(pkey) when OpenSSL::PKey::RSA COSE::Key::RSA.from_pkey(pkey) else raise "Unsupported #{pkey.class} object" end end def self.deserialize(data) map = CBOR.decode(data) case map[Base::LABEL_KTY] when COSE::Key::OKP::KTY_OKP COSE::Key::OKP.from_map(map) when COSE::Key::EC2::KTY_EC2 COSE::Key::EC2.from_map(map) when COSE::Key::RSA::KTY_RSA COSE::Key::RSA.from_map(map) when COSE::Key::Symmetric::KTY_SYMMETRIC COSE::Key::Symmetric.from_map(map) when nil raise UnknownKeyType, "Missing required key type kty label" else raise UnknownKeyType, "Unsupported or unknown key type #{map[Base::LABEL_KTY]}" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cose-0.9.0 | lib/cose/key.rb |