Sha256: 6584877ba3d455a4a31844a882c564ee4910fe4715c12ad3d6a6e5cd96deaaaf

Contents?: true

Size: 1.82 KB

Versions: 2

Compression:

Stored size: 1.82 KB

Contents

require 'jwe/enc/cipher'

module JWE
  module Enc
    # Abstract AES in Galois Counter mode for different key sizes.
    module AesGcm
      attr_accessor :cek
      attr_accessor :iv
      attr_accessor :tag

      def initialize(cek = nil, iv = nil)
        self.iv = iv
        self.cek = cek
      end

      def encrypt(cleartext, authenticated_data)
        raise JWE::BadCEK, "The supplied key is too short. Required length: #{key_length}" if cek.length < key_length

        setup_cipher(:encrypt, authenticated_data)
        ciphertext = cipher.update(cleartext) + cipher.final
        self.tag = cipher.auth_tag

        ciphertext
      end

      def decrypt(ciphertext, authenticated_data)
        raise JWE::BadCEK, "The supplied key is too short. Required length: #{key_length}" if cek.length < key_length

        setup_cipher(:decrypt, authenticated_data)
        cipher.update(ciphertext) + cipher.final
      rescue OpenSSL::Cipher::CipherError
        raise JWE::InvalidData, 'Invalid ciphertext or authentication tag'
      end

      def setup_cipher(direction, auth_data)
        cipher.send(direction)
        cipher.key = cek
        cipher.iv = iv
        cipher.auth_tag = tag if direction == :decrypt
        cipher.auth_data = auth_data
      end

      def iv
        @iv ||= SecureRandom.random_bytes(12)
      end

      def cek
        @cek ||= SecureRandom.random_bytes(key_length)
      end

      def cipher
        @cipher ||= Cipher.for(cipher_name)
      end

      def tag
        @tag || ''
      end

      def self.included(base)
        base.extend(ClassMethods)
      end

      # Provides availability checks for Key Encryption algorithms
      module ClassMethods
        def available?
          new.cipher
          true
        rescue JWE::NotImplementedError
          false
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jwe-0.4.0 lib/jwe/enc/aes_gcm.rb
jwe-0.3.1 lib/jwe/enc/aes_gcm.rb