func golang.org/x/crypto/openpgp/packet.padToKeySize

4 uses

	golang.org/x/crypto/openpgp/packet (current package)
		encrypted_key.go#L84: 		b, err = k.Decrypt(config.Random(), padToKeySize(k.Public().(*rsa.PublicKey), e.encryptedMPI1.bytes), nil)
		packet.go#L565: func padToKeySize(pub *rsa.PublicKey, b []byte) []byte {
		public_key.go#L523: 		err = rsa.VerifyPKCS1v15(rsaPublicKey, sig.Hash, hashBytes, padToKeySize(rsaPublicKey, sig.RSASignature.bytes))
		public_key.go#L574: 		if err = rsa.VerifyPKCS1v15(rsaPublicKey, sig.Hash, hashBytes, padToKeySize(rsaPublicKey, sig.RSASignature.bytes)); err != nil {