code
stringlengths
10
1.34M
language
stringclasses
1 value
// Copyright 2010 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // RIPEMD-160 block step. // In its own file so that a faster assembly or C version // can be substituted easily. package ripemd160 // work buffer indices and...
Go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package otr implements the Off The Record protocol as specified in // http://www.cypherpunks.ca/otr/Protocol-v2-3.1.0.html package otr import ( "bytes" "c...
Go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // This file implements the Socialist Millionaires Protocol as described in // http://www.cypherpunks.ca/otr/Protocol-v2-3.1.0.html. The protocol // specificati...
Go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package clearsign generates and processes OpenPGP, clear-signed data. See // RFC 4880, section 7. // // Clearsigned messages are cryptographically signed, bu...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package s2k implements the various OpenPGP string-to-key transforms as // specified in RFC 4800 section 3.7.1. package s2k import ( "code.google.com/p/go.c...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package openpgp implements high level operations on OpenPGP messages. package openpgp import ( "code.google.com/p/go.crypto/openpgp/armor" "code.google.co...
Go
// Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "bytes" "image" "image/jpeg" "io" "io/ioutil" ) const UserAttrImageSubpacket = 1 // UserAttribute is capable of storing other ty...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "code.google.com/p/go.crypto/openpgp/errors" "code.google.com/p/go.crypto/openpgp/s2k" "crypto" "encoding/binary" "io" "strconv" ...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "code.google.com/p/go.crypto/openpgp/errors" "code.google.com/p/go.crypto/openpgp/s2k" "crypto" "crypto/dsa" "crypto/rsa" "encodi...
Go
// Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "crypto" "crypto/md5" "crypto/rsa" "encoding/binary" "fmt" "hash" "io" "math/big" "strconv" "time" "code.google.com/p/go.cr...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "code.google.com/p/go.crypto/openpgp/errors" "crypto/cipher" "crypto/sha1" "crypto/subtle" "hash" "io" "strconv" ) // Symmetric...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "bytes" "code.google.com/p/go.crypto/openpgp/elgamal" "code.google.com/p/go.crypto/openpgp/errors" "crypto" "crypto/dsa" "crypto/...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "code.google.com/p/go.crypto/openpgp/errors" "compress/bzip2" "compress/flate" "compress/zlib" "io" "strconv" ) // Compressed re...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "bytes" "code.google.com/p/go.crypto/openpgp/elgamal" "code.google.com/p/go.crypto/openpgp/errors" "code.google.com/p/go.crypto/ope...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "code.google.com/p/go.crypto/openpgp/elgamal" "code.google.com/p/go.crypto/openpgp/errors" "crypto/rsa" "encoding/binary" "io" "m...
Go
// Copyright 2010 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // OpenPGP CFB Mode. http://tools.ietf.org/html/rfc4880#section-13.9 package packet import ( "crypto/cipher" ) type ocfbEncrypter struct { b cipher.B...
Go
// Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "crypto" "encoding/binary" "fmt" "io" "strconv" "time" "code.google.com/p/go.crypto/openpgp/errors" "code.google.com/p/go.cryp...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "io" "io/ioutil" "strings" ) // UserId contains text that is intended to represent the name and email // address of the key holder....
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "code.google.com/p/go.crypto/openpgp/errors" "io" ) // Reader reads packets from an io.Reader and allows packets to be 'unread' so /...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "bytes" "code.google.com/p/go.crypto/openpgp/errors" "code.google.com/p/go.crypto/openpgp/s2k" "crypto/cipher" "io" "strconv" ) ...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "encoding/binary" "io" ) // LiteralData represents an encrypted file. See RFC 4880, section 5.9. type LiteralData struct { IsBinary...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package packet implements parsing and serialization of OpenPGP packets, as // specified in RFC 4880. package packet import ( "bufio" "code.google.com/p/go...
Go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "bytes" "code.google.com/p/go.crypto/openpgp/errors" "io" "io/ioutil" ) // OpaquePacket represents an OpenPGP packet as raw, unpar...
Go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package packet import ( "crypto" "crypto/rand" "io" "time" ) // Config collects a number of parameters along with sensible defaults. // A nil *Config is v...
Go
// Copyright 2010 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package errors contains common error types for the OpenPGP packages. package errors import ( "strconv" ) // A StructuralError is returned when OpenPGP dat...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package openpgp import ( "code.google.com/p/go.crypto/openpgp/armor" "code.google.com/p/go.crypto/openpgp/errors" "code.google.com/p/go.crypto/openpgp/packe...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package elgamal implements ElGamal encryption, suitable for OpenPGP, // as specified in "A Public-Key Cryptosystem and a Signature Scheme Based on // Discret...
Go
// Copyright 2010 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package armor import ( "encoding/base64" "io" ) var armorHeaderSep = []byte(": ") var blockEnd = []byte("\n=") var newline = []byte("\n") var armorEndOfLine...
Go
// Copyright 2010 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package armor implements OpenPGP ASCII Armor, see RFC 4880. OpenPGP Armor is // very similar to PEM except that it has an additional CRC checksum. package ar...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package openpgp import ( "code.google.com/p/go.crypto/openpgp/armor" "code.google.com/p/go.crypto/openpgp/errors" "code.google.com/p/go.crypto/openpgp/packe...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package openpgp import "hash" // NewCanonicalTextHash reformats text written to it into the canonical // form and then applies the hash h. See RFC 4880, sect...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package bcrypt implements Provos and Mazières's bcrypt adaptive hashing // algorithm. See http://www.usenix.org/event/usenix99/provos/provos.pdf package bcry...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package bcrypt import "encoding/base64" const alphabet = "./ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" var bcEncoding = base64.NewEncodi...
Go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. /* Package pbkdf2 implements the key derivation function PBKDF2 as defined in RFC 2898 / PKCS #5 v2.0. A key derivation function is useful when encrypting data...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package twofish implements Bruce Schneier's Twofish encryption algorithm. package twofish // Twofish is defined in http://www.schneier.com/paper-twofish-pap...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh import ( "crypto" "fmt" "sync" _ "crypto/sha1" _ "crypto/sha256" _ "crypto/sha512" ) // These are string constants in the SSH protocol. con...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh import ( "errors" "fmt" "io" "math/rand" "net" "strconv" "strings" "sync" "time" ) // Listen requests the remote peer open a listening so...
Go
// Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh import ( "crypto" "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "errors" "io" "math/big" ) const ( kexAlgoDH1SHA1 = "diffie-hellman-grou...
Go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh import ( "io" "sync" ) // buffer provides a linked list buffer for data exchange // between producer and consumer. Theoretically the buffer is /...
Go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh import ( "time" ) // These constants from [PROTOCOL.certkeys] represent the algorithm names // for certificate types supported by this package. c...
Go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // This package contains integration tests for the // code.google.com/p/go.crypto/ssh package. package test
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build linux,!appengine darwin // Package terminal provides support functions for dealing with terminals, as // commonly found on UNIX systems. // // Puttin...
Go
// Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build darwin package terminal import "syscall" const ioctlReadTermios = syscall.TIOCGETA const ioctlWriteTermios = syscall.TIOCSETA
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package terminal import ( "io" "sync" "unicode/utf8" ) // EscapeCodes contains escape sequences that can be written to the terminal in // order to achieve ...
Go
// Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build linux package terminal import "syscall" const ioctlReadTermios = syscall.TCGETS const ioctlWriteTermios = syscall.TCSETS
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh import ( "errors" "fmt" "io" "net" ) // authenticate authenticates with the remote server. See RFC 4252. func (c *ClientConn) authenticate() e...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh // Session implements an interactive session described in // "RFC 4254, section 6". import ( "bytes" "errors" "fmt" "io" "io/ioutil" "sync" ...
Go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh // Message authentication support import ( "crypto/hmac" "crypto/sha1" "hash" ) type macMode struct { keySize int new func(key []byte) h...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh import ( "bytes" "encoding/binary" "io" "math/big" "reflect" ) // These are SSH message type numbers. They are scattered around several // do...
Go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh import ( "bytes" "crypto" "crypto/dsa" "crypto/ecdsa" "crypto/elliptic" "crypto/rsa" "crypto/x509" "encoding/asn1" "encoding/base64" "enc...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh // A Terminal is capable of parsing and generating virtual terminal // data from an SSH client. type Terminal interface { ReadLine() (line string,...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh import ( "bufio" "crypto/cipher" "crypto/subtle" "encoding/binary" "errors" "hash" "io" "net" "sync" ) const ( packetSizeMultiple = 16 /...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh import ( "crypto/aes" "crypto/cipher" "crypto/rc4" ) // streamDump is used to dump the initial keystream for stream ciphers. It is a // a write...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh import ( "errors" "fmt" "io" "sync" "sync/atomic" ) // extendedDataTypeCode identifies an OpenSSL extended data type. See RFC 4254, // sectio...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh import ( "bytes" "crypto/rand" "encoding/binary" "errors" "fmt" "io" "net" "sync" _ "crypto/sha1" ) type ServerConfig struct { hostKeys...
Go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh import ( "encoding/base64" "errors" "io" "sync" ) // See [PROTOCOL.agent], section 3. const ( // 3.2 Requests from client to agent for protoc...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. /* Package ssh implements an SSH client and server. SSH is a transport security protocol, an authentication protocol and a family of application protocols. The...
Go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package ssh import ( "crypto/rand" "encoding/binary" "errors" "fmt" "io" "net" "sync" ) // ClientConn represents the client side of an SSH connection. ...
Go
// Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package ocsp parses OCSP responses as specified in RFC 2560. OCSP responses // are signed messages attesting to the validity of a certificate for a small // ...
Go
// Copyright 2012 Google, Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicabl...
Go
// Package adexchangeseller provides access to the Ad Exchange Seller API. // // See https://developers.google.com/ad-exchange/seller-rest/ // // Usage example: // // import "code.google.com/p/google-api-go-client/adexchangeseller/v1.1" // ... // adexchangesellerService, err := adexchangeseller.New(oauthHttpClien...
Go
// Package adexchangeseller provides access to the Ad Exchange Seller API. // // See https://developers.google.com/ad-exchange/seller-rest/ // // Usage example: // // import "code.google.com/p/google-api-go-client/adexchangeseller/v1" // ... // adexchangesellerService, err := adexchangeseller.New(oauthHttpClient)...
Go
// Package gan provides access to the Google Affiliate Network API. // // See https://developers.google.com/affiliate-network/ // // Usage example: // // import "code.google.com/p/google-api-go-client/gan/v1beta1" // ... // ganService, err := gan.New(oauthHttpClient) package gan import ( "bytes" "code.google.c...
Go
// Package datastore provides access to the Google Cloud Datastore API. // // See https://developers.google.com/datastore/ // // Usage example: // // import "code.google.com/p/google-api-go-client/datastore/v1beta1" // ... // datastoreService, err := datastore.New(oauthHttpClient) package datastore import ( "by...
Go
// Package datastore provides access to the Google Cloud Datastore API. // // See https://developers.google.com/datastore/ // // Usage example: // // import "code.google.com/p/google-api-go-client/datastore/v1beta2" // ... // datastoreService, err := datastore.New(oauthHttpClient) package datastore import ( "by...
Go
// Package adsense provides access to the AdSense Management API. // // See https://developers.google.com/adsense/management/ // // Usage example: // // import "code.google.com/p/google-api-go-client/adsense/v1.3" // ... // adsenseService, err := adsense.New(oauthHttpClient) package adsense import ( "bytes" "c...
Go
// Package adsense provides access to the AdSense Management API. // // See https://developers.google.com/adsense/management/ // // Usage example: // // import "code.google.com/p/google-api-go-client/adsense/v1.2" // ... // adsenseService, err := adsense.New(oauthHttpClient) package adsense import ( "bytes" "c...
Go
// Package adsense provides access to the AdSense Management API. // // See https://developers.google.com/adsense/management/ // // Usage example: // // import "code.google.com/p/google-api-go-client/adsense/v1.4" // ... // adsenseService, err := adsense.New(oauthHttpClient) package adsense import ( "bytes" "c...
Go
// Package plusdomains provides access to the Google+ Domains API. // // See https://developers.google.com/+/domains/ // // Usage example: // // import "code.google.com/p/google-api-go-client/plusdomains/v1" // ... // plusdomainsService, err := plusdomains.New(oauthHttpClient) package plusdomains import ( "byte...
Go
// Package sqladmin provides access to the Cloud SQL Administration API. // // See https://developers.google.com/cloud-sql/docs/admin-api/ // // Usage example: // // import "code.google.com/p/google-api-go-client/sqladmin/v1beta3" // ... // sqladminService, err := sqladmin.New(oauthHttpClient) package sqladmin i...
Go
// Package sqladmin provides access to the Cloud SQL Administration API. // // See https://developers.google.com/cloud-sql/docs/admin-api/ // // Usage example: // // import "code.google.com/p/google-api-go-client/sqladmin/v1beta1" // ... // sqladminService, err := sqladmin.New(oauthHttpClient) package sqladmin i...
Go
// Package replicapool provides access to the Replica Pool API. // // See https://developers.google.com/compute/docs/replica-pool/ // // Usage example: // // import "code.google.com/p/google-api-go-client/replicapool/v1beta1" // ... // replicapoolService, err := replicapool.New(oauthHttpClient) package replicapoo...
Go
// Package games provides access to the Google Play Game Services API. // // See https://developers.google.com/games/services/ // // Usage example: // // import "code.google.com/p/google-api-go-client/games/v1" // ... // gamesService, err := games.New(oauthHttpClient) package games import ( "bytes" "code.googl...
Go
// Package storage provides access to the Cloud Storage API. // // See https://developers.google.com/storage/docs/json_api/ // // Usage example: // // import "code.google.com/p/google-api-go-client/storage/v1beta1" // ... // storageService, err := storage.New(oauthHttpClient) package storage import ( "bytes" "...
Go
// Package storage provides access to the Cloud Storage API. // // See https://developers.google.com/storage/docs/json_api/ // // Usage example: // // import "code.google.com/p/google-api-go-client/storage/v1" // ... // storageService, err := storage.New(oauthHttpClient) package storage import ( "bytes" "code....
Go
// Package storage provides access to the Cloud Storage API. // // See https://developers.google.com/storage/docs/json_api/ // // Usage example: // // import "code.google.com/p/google-api-go-client/storage/v1beta2" // ... // storageService, err := storage.New(oauthHttpClient) package storage import ( "bytes" "...
Go
// Package spectrum provides access to the Google Spectrum Database API. // // See http://developers.google.com/spectrum // // Usage example: // // import "code.google.com/p/google-api-go-client/spectrum/v1explorer" // ... // spectrumService, err := spectrum.New(oauthHttpClient) package spectrum import ( "bytes...
Go
// Package adexchangebuyer provides access to the Ad Exchange Buyer API. // // See https://developers.google.com/ad-exchange/buyer-rest // // Usage example: // // import "code.google.com/p/google-api-go-client/adexchangebuyer/v1.3" // ... // adexchangebuyerService, err := adexchangebuyer.New(oauthHttpClient) pack...
Go
// Package adexchangebuyer provides access to the Ad Exchange Buyer API. // // See https://developers.google.com/ad-exchange/buyer-rest // // Usage example: // // import "code.google.com/p/google-api-go-client/adexchangebuyer/v1.2" // ... // adexchangebuyerService, err := adexchangebuyer.New(oauthHttpClient) pack...
Go
// Package adexchangebuyer provides access to the Ad Exchange Buyer API. // // See https://developers.google.com/ad-exchange/buyer-rest // // Usage example: // // import "code.google.com/p/google-api-go-client/adexchangebuyer/v1.1" // ... // adexchangebuyerService, err := adexchangebuyer.New(oauthHttpClient) pack...
Go
// Package adexchangebuyer provides access to the Ad Exchange Buyer API. // // See https://developers.google.com/ad-exchange/buyer-rest // // Usage example: // // import "code.google.com/p/google-api-go-client/adexchangebuyer/v1" // ... // adexchangebuyerService, err := adexchangebuyer.New(oauthHttpClient) packag...
Go
// Package siteverification provides access to the Google Site Verification API. // // See https://developers.google.com/site-verification/ // // Usage example: // // import "code.google.com/p/google-api-go-client/siteverification/v1" // ... // siteverificationService, err := siteverification.New(oauthHttpClient)...
Go
// Package compute provides access to the Compute Engine API. // // See https://developers.google.com/compute/docs/reference/latest/ // // Usage example: // // import "code.google.com/p/google-api-go-client/compute/v1" // ... // computeService, err := compute.New(oauthHttpClient) package compute import ( "bytes...
Go
// Package content provides access to the Content API for Shopping. // // See https://developers.google.com/shopping-content/v2/ // // Usage example: // // import "code.google.com/p/google-api-go-client/content/v2" // ... // contentService, err := content.New(oauthHttpClient) package content import ( "bytes" "...
Go
// Package youtube provides access to the YouTube Data API. // // See https://developers.google.com/youtube/v3 // // Usage example: // // import "code.google.com/p/google-api-go-client/youtube/v3" // ... // youtubeService, err := youtube.New(oauthHttpClient) package youtube import ( "bytes" "code.google.com/p/...
Go
// Package discovery provides access to the APIs Discovery Service. // // See https://developers.google.com/discovery/ // // Usage example: // // import "code.google.com/p/google-api-go-client/discovery/v1" // ... // discoveryService, err := discovery.New(oauthHttpClient) package discovery import ( "bytes" "co...
Go
// Package analytics provides access to the Google Analytics API. // // See https://developers.google.com/analytics/ // // Usage example: // // import "code.google.com/p/google-api-go-client/analytics/v3" // ... // analyticsService, err := analytics.New(oauthHttpClient) package analytics import ( "bytes" "code...
Go
// Package analytics provides access to the Google Analytics API. // // See https://developers.google.com/analytics/ // // Usage example: // // import "code.google.com/p/google-api-go-client/analytics/v2.4" // ... // analyticsService, err := analytics.New(oauthHttpClient) package analytics import ( "bytes" "co...
Go
// Package translate provides access to the Translate API. // // See https://developers.google.com/translate/v2/using_rest // // Usage example: // // import "code.google.com/p/google-api-go-client/translate/v2" // ... // translateService, err := translate.New(oauthHttpClient) package translate import ( "bytes" ...
Go
// Package oauth2 provides access to the Google OAuth2 API. // // See https://developers.google.com/accounts/docs/OAuth2 // // Usage example: // // import "code.google.com/p/google-api-go-client/oauth2/v1" // ... // oauth2Service, err := oauth2.New(oauthHttpClient) package oauth2 import ( "bytes" "code.google....
Go
// Package oauth2 provides access to the Google OAuth2 API. // // See https://developers.google.com/accounts/docs/OAuth2 // // Usage example: // // import "code.google.com/p/google-api-go-client/oauth2/v2" // ... // oauth2Service, err := oauth2.New(oauthHttpClient) package oauth2 import ( "bytes" "code.google....
Go
// Package reseller provides access to the Enterprise Apps Reseller API. // // See https://developers.google.com/google-apps/reseller/ // // Usage example: // // import "code.google.com/p/google-api-go-client/reseller/v1" // ... // resellerService, err := reseller.New(oauthHttpClient) package reseller import ( ...
Go
// Package reseller provides access to the Enterprise Apps Reseller API. // // See https://developers.google.com/google-apps/reseller/ // // Usage example: // // import "code.google.com/p/google-api-go-client/reseller/v1sandbox" // ... // resellerService, err := reseller.New(oauthHttpClient) package reseller imp...
Go
// Package calendar provides access to the Calendar API. // // See https://developers.google.com/google-apps/calendar/firstapp // // Usage example: // // import "code.google.com/p/google-api-go-client/calendar/v3" // ... // calendarService, err := calendar.New(oauthHttpClient) package calendar import ( "bytes" ...
Go
// Package freebase provides access to the Freebase Search. // // See https://developers.google.com/freebase/ // // Usage example: // // import "code.google.com/p/google-api-go-client/freebase/v1-sandbox" // ... // freebaseService, err := freebase.New(oauthHttpClient) package freebase import ( "bytes" "code.go...
Go
// Package freebase provides access to the Freebase Search. // // See https://developers.google.com/freebase/ // // Usage example: // // import "code.google.com/p/google-api-go-client/freebase/v1" // ... // freebaseService, err := freebase.New(oauthHttpClient) package freebase import ( "bytes" "code.google.com...
Go
// Package freebase provides access to the Freebase Search. // // See https://developers.google.com/freebase/ // // Usage example: // // import "code.google.com/p/google-api-go-client/freebase/v1sandbox" // ... // freebaseService, err := freebase.New(oauthHttpClient) package freebase import ( "bytes" "code.goo...
Go
// Package cloudmonitoring provides access to the Cloud Monitoring API. // // See https://developers.google.com/cloud-monitoring/ // // Usage example: // // import "code.google.com/p/google-api-go-client/cloudmonitoring/v2beta1" // ... // cloudmonitoringService, err := cloudmonitoring.New(oauthHttpClient) package...
Go
// Package audit provides access to the Enterprise Audit API. // // See https://developers.google.com/google-apps/admin-audit/get_started // // Usage example: // // import "code.google.com/p/google-api-go-client/audit/v1" // ... // auditService, err := audit.New(oauthHttpClient) package audit import ( "bytes" ...
Go
// Package gamesmanagement provides access to the Google Play Game Services Management API. // // See https://developers.google.com/games/services // // Usage example: // // import "code.google.com/p/google-api-go-client/gamesmanagement/v1management" // ... // gamesmanagementService, err := gamesmanagement.New(oa...
Go