~juju-qa/ubuntu/xenial/juju/2.0-rc2

« back to all changes in this revision

Viewing changes to src/golang.org/x/crypto/openpgp/write.go

  • Committer: Nicholas Skaggs
  • Date: 2016-09-30 14:39:30 UTC
  • mfrom: (1.8.1)
  • Revision ID: nicholas.skaggs@canonical.com-20160930143930-vwwhrefh6ftckccy
import upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
231
231
        }
232
232
 
233
233
        cipher := packet.CipherFunction(candidateCiphers[0])
234
 
        // If the cipher specifed by config is a candidate, we'll use that.
 
234
        // If the cipher specified by config is a candidate, we'll use that.
235
235
        configuredCipher := config.Cipher()
236
236
        for _, c := range candidateCiphers {
237
237
                cipherFunc := packet.CipherFunction(c)