# File lib/openid/filestore.rb, line 74
    def getAuthKey
      auth_key = readAuthKey
      if auth_key.nil?
        auth_key = createAuthKey
      end
      
      if auth_key.length != @@AUTH_KEY_LEN
        raise StandardError.new("Bad auth key - wrong length")
      end
      
      auth_key
    end