1 # Copyright 2010 Google Inc.
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
18 # Helper for loading keys from the PKCS12 files downloaded when
19 # setting up service accounts at the APIs Console.
23 # Loads a key from PKCS12 file, assuming a single private key
26 # @param [String] keyfile
27 # Path of the PKCS12 file to load. If not a path to an actual file,
28 # assumes the string is the content of the file itself.
29 # @param [String] passphrase
30 # Passphrase for unlocking the private key
32 # @return [OpenSSL::PKey] The private key for signing assertions.
33 def self.load_from_pkcs12(keyfile, passphrase)
34 load_key(keyfile, passphrase) do |content, passphrase|
35 OpenSSL::PKCS12.new(content, passphrase).key
41 # Loads a key from a PEM file.
43 # @param [String] keyfile
44 # Path of the PEM file to load. If not a path to an actual file,
45 # assumes the string is the content of the file itself.
46 # @param [String] passphrase
47 # Passphrase for unlocking the private key
49 # @return [OpenSSL::PKey] The private key for signing assertions.
51 def self.load_from_pem(keyfile, passphrase)
52 load_key(keyfile, passphrase) do | content, passphrase|
53 OpenSSL::PKey::RSA.new(content, passphrase)
60 # Helper for loading keys from file or memory. Accepts a block
61 # to handle the specific file format.
63 # @param [String] keyfile
64 # Path of thefile to load. If not a path to an actual file,
65 # assumes the string is the content of the file itself.
66 # @param [String] passphrase
67 # Passphrase for unlocking the private key
69 # @yield [String, String]
70 # Key file & passphrase to extract key from
71 # @yieldparam [String] keyfile
72 # Contents of the file
73 # @yieldparam [String] passphrase
74 # Passphrase to unlock key
75 # @yieldreturn [OpenSSL::PKey]
78 # @return [OpenSSL::PKey] The private key for signing assertions.
79 def self.load_key(keyfile, passphrase, &block)
82 content = File.open(keyfile, 'rb') { |io| io.read }
86 block.call(content, passphrase)
87 rescue OpenSSL::OpenSSLError
88 raise ArgumentError.new("Invalid keyfile or passphrase")