Class: Pedicel::EC
Constant Summary
Constants inherited
from Base
Base::SUPPORTED_VERSIONS
Instance Attribute Summary
Attributes inherited from Base
#config
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Base
#application_data, #decrypt_aes, #encrypted_data, extract_certificates, #initialize, #private_key_class, #signature, #symmetric_algorithm, #transaction_id, #valid_signature?, verify_root_certificate, #verify_signature, verify_signed_time, verify_x509_chain, #version
Constructor Details
This class inherits a constructor from Pedicel::Base
Class Method Details
.merchant_id(certificate:, mid_oid: ) ⇒ Object
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
# File 'lib/pedicel/ec.rb', line 114
def self.merchant_id(certificate:, mid_oid: Pedicel::DEFAULT_CONFIG[:oid_merchant_identifier_field])
begin
cert = OpenSSL::X509::Certificate.new(certificate)
rescue => e
raise CertificateError, "invalid PEM format of certificate: #{e.message}"
end
merchant_id_hex =
cert
.extensions
.find { |x| x.oid == mid_oid }
&.value
&.delete('^[0-9a-fA-F]')
raise CertificateError, 'no merchant identifier in certificate' unless merchant_id_hex
[merchant_id_hex].pack('H*')
end
|
.symmetric_key(merchant_id:, shared_secret:) ⇒ Object
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
# File 'lib/pedicel/ec.rb', line 69
def self.symmetric_key(merchant_id:, shared_secret:)
raise ArgumentError, 'merchant_id must be a SHA256' unless merchant_id.is_a?(String) && merchant_id.length == 32
raise ArgumentError, 'shared_secret must be a string' unless shared_secret.is_a?(String)
sha256 = Digest::SHA256.new
sha256 << "\x00\x00\x00\x01"
sha256 << shared_secret
sha256 << "\x0d" + 'id-aes256-GCM'
sha256 << 'Apple'
sha256 << merchant_id
sha256.digest
end
|
Instance Method Details
#decrypt(symmetric_key: nil, merchant_id: nil, certificate: nil, private_key: nil, ca_certificate_pem: @config[:trusted_ca_pem], now: Time.now) ⇒ Object
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# File 'lib/pedicel/ec.rb', line 9
def decrypt(symmetric_key: nil, merchant_id: nil, certificate: nil, private_key: nil,
ca_certificate_pem: @config[:trusted_ca_pem], now: Time.now)
unless symmetric_key || ((merchant_id || certificate) && private_key)
raise ArgumentError, 'missing parameters'
end
if symmetric_key && (merchant_id || certificate || private_key)
raise ArgumentError, "leave out other parameters when supplying 'symmetric_key'"
end
verify_signature(ca_certificate_pem: ca_certificate_pem, now: now)
symmetric_key ||= symmetric_key(private_key: private_key,
merchant_id: merchant_id,
certificate: certificate)
decrypt_aes(key: symmetric_key)
end
|
#ephemeral_public_key ⇒ Object
5
6
7
|
# File 'lib/pedicel/ec.rb', line 5
def ephemeral_public_key
Base64.decode64(@token[:header][:ephemeralPublicKey])
end
|
#shared_secret(private_key:) ⇒ Object
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# File 'lib/pedicel/ec.rb', line 48
def shared_secret(private_key:)
begin
privkey = OpenSSL::PKey::EC.new(private_key)
rescue => e
raise EcKeyError, "invalid PEM format of private key for EC: #{e.message}"
end
begin
pubkey = OpenSSL::PKey::EC.new(ephemeral_public_key).public_key
rescue => e
raise EcKeyError, "invalid ephemeralPublicKey (from token) for EC: #{e.message}"
end
unless privkey.group == pubkey.group
raise EcKeyError, "private_key curve '%s' differs from token ephemeralPublicKey curve '%s'" %
[privkey.group.curve_name, pubkey.group.curve_name]
end
privkey.dh_compute_key(pubkey)
end
|
#symmetric_key(private_key: nil, merchant_id: nil, certificate: nil) ⇒ Object
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# File 'lib/pedicel/ec.rb', line 30
def symmetric_key(private_key: nil, merchant_id: nil, certificate: nil)
unless private_key && (merchant_id || certificate)
raise ArgumentError, 'missing parameters'
end
if merchant_id && certificate
raise ArgumentError, "leave out 'certificate' when supplying 'merchant_id'"
end
shared_secret = shared_secret(private_key: private_key)
merchant_id ||= self.class.merchant_id(certificate: certificate, mid_oid: @config[:oid_merchant_identifier_field])
self.class.symmetric_key(shared_secret: shared_secret, merchant_id: merchant_id)
end
|