├── .gitattributes ├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── Makefile ├── README.md ├── chaincode ├── eduCC.go ├── eduStruct.go └── main.go ├── config.yaml ├── fixtures ├── artifacts │ ├── Org1MSPanchors.tx │ ├── channel.tx │ └── genesis.block ├── crypto-config │ ├── ordererOrganizations │ │ └── kevin.kongyixueyuan.com │ │ │ ├── ca │ │ │ ├── 01d5bc1d55520dc548d6954c298f05e8cbebc4b7e4aa5c9b390d006e705d2eb1_sk │ │ │ └── ca.kevin.kongyixueyuan.com-cert.pem │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@kevin.kongyixueyuan.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.kevin.kongyixueyuan.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.kevin.kongyixueyuan.com-cert.pem │ │ │ ├── orderers │ │ │ └── orderer.kevin.kongyixueyuan.com │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@kevin.kongyixueyuan.com-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.kevin.kongyixueyuan.com-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── ecb1a1840154b2d1e152bc6cd3aab1f13b732eba76bb89bf20540fe68ce201ef_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── orderer.kevin.kongyixueyuan.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.kevin.kongyixueyuan.com-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ │ ├── tlsca │ │ │ ├── fecd1ab4fbd904091cb1bf5f8f03a73c9ea93ec58fd42b859577c105ef8ce90d_sk │ │ │ └── tlsca.kevin.kongyixueyuan.com-cert.pem │ │ │ └── users │ │ │ └── Admin@kevin.kongyixueyuan.com │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@kevin.kongyixueyuan.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.kevin.kongyixueyuan.com-cert.pem │ │ │ ├── keystore │ │ │ │ └── 98a085acc79852c9c0a7ae0e5cc24974bbae3dc485d282c502ee8ade93206dc7_sk │ │ │ ├── signcerts │ │ │ │ └── Admin@kevin.kongyixueyuan.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.kevin.kongyixueyuan.com-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── client.crt │ │ │ └── client.key │ └── peerOrganizations │ │ └── org1.kevin.kongyixueyuan.com │ │ ├── ca │ │ ├── 727e69ed4a01a204cd53bf4a97c2c1cb947419504f82851f6ae563c3c96dea3a_sk │ │ └── ca.org1.kevin.kongyixueyuan.com-cert.pem │ │ ├── msp │ │ ├── admincerts │ │ │ └── Admin@org1.kevin.kongyixueyuan.com-cert.pem │ │ ├── cacerts │ │ │ └── ca.org1.kevin.kongyixueyuan.com-cert.pem │ │ ├── config.yaml │ │ └── tlscacerts │ │ │ └── tlsca.org1.kevin.kongyixueyuan.com-cert.pem │ │ ├── peers │ │ ├── peer0.org1.kevin.kongyixueyuan.com │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@org1.kevin.kongyixueyuan.com-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.org1.kevin.kongyixueyuan.com-cert.pem │ │ │ │ ├── config.yaml │ │ │ │ ├── keystore │ │ │ │ │ └── 60ff53f6d811a06a3b43220f3684085ef0172d441ab4e76526ec6fe5f6b10f0f_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── peer0.org1.kevin.kongyixueyuan.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.org1.kevin.kongyixueyuan.com-cert.pem │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ └── peer1.org1.kevin.kongyixueyuan.com │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@org1.kevin.kongyixueyuan.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.org1.kevin.kongyixueyuan.com-cert.pem │ │ │ ├── config.yaml │ │ │ ├── keystore │ │ │ │ └── 562d34c695d8a2f90544f1fff877e3b3a2c78a5089730011b60b49eb889a0a93_sk │ │ │ ├── signcerts │ │ │ │ └── peer1.org1.kevin.kongyixueyuan.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org1.kevin.kongyixueyuan.com-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ │ ├── tlsca │ │ ├── cfdb63f827da4393e7e0a8ac5cebfafa09318a98570e266b11778780d99804b6_sk │ │ └── tlsca.org1.kevin.kongyixueyuan.com-cert.pem │ │ └── users │ │ ├── Admin@org1.kevin.kongyixueyuan.com │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@org1.kevin.kongyixueyuan.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.org1.kevin.kongyixueyuan.com-cert.pem │ │ │ ├── keystore │ │ │ │ └── c24c159c6de601f2703c4e4273682b08cda54ebdaf4ca1c4aa4b3f80b8a91964_sk │ │ │ ├── signcerts │ │ │ │ └── Admin@org1.kevin.kongyixueyuan.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org1.kevin.kongyixueyuan.com-cert.pem │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── client.crt │ │ │ └── client.key │ │ └── User1@org1.kevin.kongyixueyuan.com │ │ ├── msp │ │ ├── admincerts │ │ │ └── User1@org1.kevin.kongyixueyuan.com-cert.pem │ │ ├── cacerts │ │ │ └── ca.org1.kevin.kongyixueyuan.com-cert.pem │ │ ├── keystore │ │ │ └── e1b7247f27c18165fa9cd726fff0083f8316143c2ada6f1800978a71292a46be_sk │ │ ├── signcerts │ │ │ └── User1@org1.kevin.kongyixueyuan.com-cert.pem │ │ └── tlscacerts │ │ │ └── tlsca.org1.kevin.kongyixueyuan.com-cert.pem │ │ └── tls │ │ ├── ca.crt │ │ ├── client.crt │ │ └── client.key ├── docker-compose.yml └── pull_images.sh ├── img ├── createchannel.png ├── docker_ps.png ├── dockercompose_down.png ├── dockercompose_down2.png ├── dockercompose_up.png ├── findEduByCertNoAndName.png ├── findEduInfoByEntityID.png ├── html │ ├── help.png │ ├── help2.png │ ├── help3.png │ ├── index.png │ ├── login.png │ ├── query.png │ ├── queryResult.png │ └── 详情.png ├── html_addEdu.png ├── html_addEdu_info.png ├── html_help.png ├── html_index.png ├── html_login.png ├── html_modify.png ├── html_modifyResult.png ├── html_query.png ├── html_query2.png ├── html_queryResultbycert.png ├── html_queryResultbyentityid.png ├── installcc.png ├── modifyEdu.png ├── networkArch.png ├── projectArch.png ├── saveedu.png ├── update_findEduByCertNoAndName.png └── update_findEduInfoByEntityID.png ├── main.go ├── sdkInit ├── fabricInitInfo.go └── start.go ├── service ├── domain.go └── eduService.go ├── vendor ├── github.com │ ├── Knetic │ │ └── govaluate │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTORS │ │ │ ├── EvaluableExpression.go │ │ │ ├── EvaluableExpression_sql.go │ │ │ ├── ExpressionToken.go │ │ │ ├── LICENSE │ │ │ ├── MANUAL.md │ │ │ ├── OperatorSymbol.go │ │ │ ├── README.md │ │ │ ├── TokenKind.go │ │ │ ├── benchmarks_test.go │ │ │ ├── evaluationFailure_test.go │ │ │ ├── evaluationStage.go │ │ │ ├── evaluation_test.go │ │ │ ├── expressionFunctions.go │ │ │ ├── expressionOutputStream.go │ │ │ ├── lexerState.go │ │ │ ├── lexerStream.go │ │ │ ├── parameters.go │ │ │ ├── parsing.go │ │ │ ├── parsingFailure_test.go │ │ │ ├── parsing_test.go │ │ │ ├── readme_test.go │ │ │ ├── sanitizedParameters.go │ │ │ ├── sql_test.go │ │ │ ├── stagePlanner.go │ │ │ ├── test.sh │ │ │ ├── tokenExpressionFailure_test.go │ │ │ ├── tokenKind_test.go │ │ │ ├── tokenStream.go │ │ │ └── torture_test.go │ ├── cloudflare │ │ └── cfssl │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── BUILDING.md │ │ │ ├── CHANGELOG │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.build │ │ │ ├── Dockerfile.minimal │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── api │ │ │ ├── api.go │ │ │ ├── api_test.go │ │ │ ├── bundle │ │ │ │ ├── bundle.go │ │ │ │ └── bundle_test.go │ │ │ ├── certadd │ │ │ │ ├── insert.go │ │ │ │ └── insert_test.go │ │ │ ├── certinfo │ │ │ │ └── certinfo.go │ │ │ ├── client │ │ │ │ ├── api.go │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ └── group.go │ │ │ ├── crl │ │ │ │ ├── crl.go │ │ │ │ └── crl_test.go │ │ │ ├── gencrl │ │ │ │ ├── gencrl.go │ │ │ │ └── gencrl_test.go │ │ │ ├── generator │ │ │ │ ├── generator.go │ │ │ │ ├── generator_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── ca.pem │ │ │ │ │ └── ca_key.pem │ │ │ ├── info │ │ │ │ ├── info.go │ │ │ │ └── info_test.go │ │ │ ├── initca │ │ │ │ ├── initca.go │ │ │ │ └── initca_test.go │ │ │ ├── ocsp │ │ │ │ ├── ocspsign.go │ │ │ │ └── ocspsign_test.go │ │ │ ├── revoke │ │ │ │ ├── revoke.go │ │ │ │ └── revoke_test.go │ │ │ ├── scan │ │ │ │ ├── scan.go │ │ │ │ └── scan_test.go │ │ │ ├── sign │ │ │ │ ├── sign.go │ │ │ │ └── sign_test.go │ │ │ ├── signhandler │ │ │ │ ├── signhandler.go │ │ │ │ └── signhandler_test.go │ │ │ └── testdata │ │ │ │ ├── broken.pem │ │ │ │ ├── broken_csr.pem │ │ │ │ ├── ca-bundle.pem │ │ │ │ ├── ca.pem │ │ │ │ ├── ca2-key.pem │ │ │ │ ├── ca2.pem │ │ │ │ ├── ca_key.pem │ │ │ │ ├── cert.pem │ │ │ │ ├── csr.pem │ │ │ │ ├── int-bundle.pem │ │ │ │ ├── leaf.badkey │ │ │ │ ├── leaf.key │ │ │ │ └── leaf.pem │ │ │ ├── auth │ │ │ ├── auth.go │ │ │ ├── auth_test.go │ │ │ └── testdata │ │ │ │ ├── authrequest.json │ │ │ │ └── request.json │ │ │ ├── bundler │ │ │ ├── bundle.go │ │ │ ├── bundle_from_file_test.go │ │ │ ├── bundle_from_pem_test.go │ │ │ ├── bundle_from_remote_test.go │ │ │ ├── bundler.go │ │ │ ├── bundler_sha1_deprecation_test.go │ │ │ ├── bundler_test.go │ │ │ ├── doc.go │ │ │ └── testdata │ │ │ │ ├── bad-bundle.pem │ │ │ │ ├── ca-bundle.crt.metadata │ │ │ │ ├── ca-bundle.pem │ │ │ │ ├── ca.key │ │ │ │ ├── ca.pem │ │ │ │ ├── cfssl-leaf-ecdsa256.csr │ │ │ │ ├── cfssl-leaf-ecdsa256.key │ │ │ │ ├── cfssl-leaf-ecdsa256.pem │ │ │ │ ├── cfssl-leaf-ecdsa384.csr │ │ │ │ ├── cfssl-leaf-ecdsa384.key │ │ │ │ ├── cfssl-leaf-ecdsa384.pem │ │ │ │ ├── cfssl-leaf-ecdsa521.csr │ │ │ │ ├── cfssl-leaf-ecdsa521.key │ │ │ │ ├── cfssl-leaf-ecdsa521.pem │ │ │ │ ├── cfssl-leaf-rsa2048.csr │ │ │ │ ├── cfssl-leaf-rsa2048.key │ │ │ │ ├── cfssl-leaf-rsa2048.pem │ │ │ │ ├── cfssl-leaf-rsa3072.csr │ │ │ │ ├── cfssl-leaf-rsa3072.key │ │ │ │ ├── cfssl-leaf-rsa3072.pem │ │ │ │ ├── cfssl-leaf-rsa4096.csr │ │ │ │ ├── cfssl-leaf-rsa4096.key │ │ │ │ ├── cfssl-leaf-rsa4096.pem │ │ │ │ ├── cfssl-leaflet-rsa4096.pem │ │ │ │ ├── client-auth │ │ │ │ ├── build_certs.sh │ │ │ │ ├── int-config.json │ │ │ │ ├── int-csr.json │ │ │ │ ├── int.pem │ │ │ │ ├── leaf-client-csr.json │ │ │ │ ├── leaf-client.pem │ │ │ │ ├── leaf-server-csr.json │ │ │ │ ├── leaf-server.pem │ │ │ │ ├── root-config.json │ │ │ │ ├── root-csr.json │ │ │ │ └── root.pem │ │ │ │ ├── dsa2048.key │ │ │ │ ├── dsa2048.pem │ │ │ │ ├── empty.pem │ │ │ │ ├── forcebundle.pem │ │ │ │ ├── froyo.pem │ │ │ │ ├── int-bundle.pem │ │ │ │ ├── inter-L1-expired.pem │ │ │ │ ├── inter-L1-sha1.pem │ │ │ │ ├── inter-L1.csr │ │ │ │ ├── inter-L1.key │ │ │ │ ├── inter-L1.pem │ │ │ │ ├── inter-L2-direct.pem │ │ │ │ ├── inter-L2.csr │ │ │ │ ├── inter-L2.key │ │ │ │ ├── inter-L2.pem │ │ │ │ ├── intermediates.crt │ │ │ │ ├── nss.pem │ │ │ │ ├── osx.pem │ │ │ │ ├── partial-bundle.pem │ │ │ │ └── reverse-partial-bundle.pem │ │ │ ├── certdb │ │ │ ├── README.md │ │ │ ├── certdb.go │ │ │ ├── dbconf │ │ │ │ ├── db_config.go │ │ │ │ ├── db_config_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── bad-db-config.json │ │ │ │ │ ├── db-config.json │ │ │ │ │ └── memory_db.json │ │ │ ├── mysql │ │ │ │ ├── dbconf.yml │ │ │ │ └── migrations │ │ │ │ │ └── 001_CreateCertificates.sql │ │ │ ├── ocspstapling │ │ │ │ ├── ocspstapling.go │ │ │ │ └── ocspstapling_test.go │ │ │ ├── pg │ │ │ │ ├── dbconf.yml │ │ │ │ └── migrations │ │ │ │ │ └── 001_CreateCertificates.sql │ │ │ ├── sql │ │ │ │ ├── database_accessor.go │ │ │ │ ├── sql_mysql_test.go │ │ │ │ ├── sql_pq_test.go │ │ │ │ └── sql_test.go │ │ │ ├── sqlite │ │ │ │ ├── dbconf.yml │ │ │ │ └── migrations │ │ │ │ │ └── 001_CreateCertificates.sql │ │ │ └── testdb │ │ │ │ ├── certstore_development.db │ │ │ │ └── testdb.go │ │ │ ├── certinfo │ │ │ └── certinfo.go │ │ │ ├── cli │ │ │ ├── bundle │ │ │ │ ├── bundle.go │ │ │ │ └── bundle_test.go │ │ │ ├── certinfo │ │ │ │ └── certinfo.go │ │ │ ├── cli.go │ │ │ ├── cli_test.go │ │ │ ├── config.go │ │ │ ├── crl │ │ │ │ ├── crl.go │ │ │ │ └── crl_test.go │ │ │ ├── gencert │ │ │ │ ├── gencert.go │ │ │ │ └── gencert_test.go │ │ │ ├── gencrl │ │ │ │ ├── gencrl.go │ │ │ │ ├── gencrl_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── ca-keyTwo.pem │ │ │ │ │ ├── caTwo.pem │ │ │ │ │ └── serialList │ │ │ ├── gencsr │ │ │ │ ├── gencsr.go │ │ │ │ ├── gencsr_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── csr.json │ │ │ │ │ └── test-key.pem │ │ │ ├── genkey │ │ │ │ ├── genkey.go │ │ │ │ ├── genkey_test.go │ │ │ │ └── testdata │ │ │ │ │ └── csr.json │ │ │ ├── info │ │ │ │ └── info.go │ │ │ ├── ocspdump │ │ │ │ └── ocspdump.go │ │ │ ├── ocsprefresh │ │ │ │ ├── ocsprefresh.go │ │ │ │ └── ocsprefresh_test.go │ │ │ ├── ocspserve │ │ │ │ └── ocspserve.go │ │ │ ├── ocspsign │ │ │ │ └── ocspsign.go │ │ │ ├── printdefault │ │ │ │ ├── defaults.go │ │ │ │ └── printdefault.go │ │ │ ├── revoke │ │ │ │ ├── revoke.go │ │ │ │ └── revoke_test.go │ │ │ ├── scan │ │ │ │ ├── scan.go │ │ │ │ └── scan_test.go │ │ │ ├── selfsign │ │ │ │ ├── selfsign.go │ │ │ │ └── selfsign_test.go │ │ │ ├── serve │ │ │ │ ├── README.md │ │ │ │ ├── serve.go │ │ │ │ ├── serve_test.go │ │ │ │ └── static │ │ │ │ │ ├── assets │ │ │ │ │ └── cfssl.js │ │ │ │ │ └── index.html │ │ │ ├── sign │ │ │ │ ├── sign.go │ │ │ │ └── sign_test.go │ │ │ ├── testdata │ │ │ │ ├── bad_csr.json │ │ │ │ ├── ca-key.pem │ │ │ │ ├── ca.csr │ │ │ │ ├── ca.pem │ │ │ │ ├── csr.json │ │ │ │ ├── db-config.json │ │ │ │ └── test.txt │ │ │ └── version │ │ │ │ ├── version.go │ │ │ │ ├── version_dev.go │ │ │ │ └── version_test.go │ │ │ ├── cmd │ │ │ ├── cfssl-bundle │ │ │ │ └── cfssl-bundle.go │ │ │ ├── cfssl-certinfo │ │ │ │ └── cfssl-certinfo.go │ │ │ ├── cfssl-newkey │ │ │ │ └── cfssl-newkey.go │ │ │ ├── cfssl-scan │ │ │ │ └── cfssl-scan.go │ │ │ ├── cfssl │ │ │ │ ├── cfssl.go │ │ │ │ └── cfssl_test.go │ │ │ ├── cfssljson │ │ │ │ ├── cfssljson.go │ │ │ │ ├── cfssljson_test.go │ │ │ │ └── testdata │ │ │ │ │ └── test.txt │ │ │ ├── mkbundle │ │ │ │ ├── cert-bundle.crt │ │ │ │ ├── mkbundle.go │ │ │ │ └── mkbundle_test.go │ │ │ └── multirootca │ │ │ │ ├── api.go │ │ │ │ └── ca.go │ │ │ ├── config │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ └── testdata │ │ │ │ ├── invalid_auth.json │ │ │ │ ├── invalid_auth_bad_key.json │ │ │ │ ├── invalid_config.json │ │ │ │ ├── invalid_default.json │ │ │ │ ├── invalid_no_auth_keys.json │ │ │ │ ├── invalid_no_remotes.json │ │ │ │ ├── invalid_profile.json │ │ │ │ ├── invalid_remotes.json │ │ │ │ ├── invalid_usage.json │ │ │ │ ├── valid_config.json │ │ │ │ ├── valid_config_auth.json │ │ │ │ ├── valid_config_auth_no_default.json │ │ │ │ └── valid_config_no_default.json │ │ │ ├── crl │ │ │ ├── crl.go │ │ │ ├── crl_test.go │ │ │ └── testdata │ │ │ │ ├── ca-key.pem │ │ │ │ ├── ca-keyTwo.pem │ │ │ │ ├── ca.pem │ │ │ │ ├── caTwo.pem │ │ │ │ ├── cert.pem │ │ │ │ ├── serialList │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ │ ├── crypto │ │ │ ├── doc.go │ │ │ └── pkcs7 │ │ │ │ └── pkcs7.go │ │ │ ├── csr │ │ │ ├── csr.go │ │ │ ├── csr_test.go │ │ │ └── testdata │ │ │ │ └── test-ecdsa-ca.pem │ │ │ ├── doc │ │ │ ├── README.txt │ │ │ ├── api │ │ │ │ ├── endpoint_authsign.txt │ │ │ │ ├── endpoint_bundle.txt │ │ │ │ ├── endpoint_certinfo.txt │ │ │ │ ├── endpoint_crl.txt │ │ │ │ ├── endpoint_info.txt │ │ │ │ ├── endpoint_init_ca.txt │ │ │ │ ├── endpoint_newcert.txt │ │ │ │ ├── endpoint_newkey.txt │ │ │ │ ├── endpoint_revoke.txt │ │ │ │ ├── endpoint_scan.txt │ │ │ │ ├── endpoint_scaninfo.txt │ │ │ │ ├── endpoint_sign.txt │ │ │ │ └── intro.txt │ │ │ ├── authentication.txt │ │ │ ├── bootstrap.txt │ │ │ ├── ca-bundle.crt.metadata.sample │ │ │ ├── cmd │ │ │ │ ├── cfssl.txt │ │ │ │ └── multiroot.txt │ │ │ ├── errorcode.txt │ │ │ └── transport.txt │ │ │ ├── errors │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ └── http.go │ │ │ ├── helpers │ │ │ ├── derhelpers │ │ │ │ └── derhelpers.go │ │ │ ├── helpers.go │ │ │ ├── helpers_test.go │ │ │ ├── testdata │ │ │ │ ├── bundle.pem │ │ │ │ ├── bundle_pkcs7.pem │ │ │ │ ├── bundle_with_whitespace.pem │ │ │ │ ├── ca.pem │ │ │ │ ├── ca_key.pem │ │ │ │ ├── cert.der │ │ │ │ ├── cert.pem │ │ │ │ ├── cert_pkcs7.pem │ │ │ │ ├── cert_with_whitespace.pem │ │ │ │ ├── ecdsa256.csr │ │ │ │ ├── empty.pem │ │ │ │ ├── empty_pkcs7.der │ │ │ │ ├── empty_pkcs7.pem │ │ │ │ ├── emptycert.pem │ │ │ │ ├── emptypasswordpkcs12.p12 │ │ │ │ ├── enc_priv_key.pem │ │ │ │ ├── messed_up_bundle.pem │ │ │ │ ├── messed_up_priv_key.pem │ │ │ │ ├── messedupcert.pem │ │ │ │ ├── multiplecerts.p12 │ │ │ │ ├── noheadercert.pem │ │ │ │ ├── passwordpkcs12.p12 │ │ │ │ ├── priv_rsa_key.pem │ │ │ │ ├── private_ecdsa_key.pem │ │ │ │ ├── rsa-old.csr │ │ │ │ ├── secp256k1-key.pem │ │ │ │ ├── test.bad.csr.pem │ │ │ │ └── test.csr.pem │ │ │ └── testsuite │ │ │ │ ├── testdata │ │ │ │ ├── cert_csr.json │ │ │ │ └── initCA │ │ │ │ │ ├── ca_csr.json │ │ │ │ │ └── cfssl_output.pem │ │ │ │ ├── testing_helpers.go │ │ │ │ └── testing_helpers_test.go │ │ │ ├── info │ │ │ └── info.go │ │ │ ├── initca │ │ │ ├── initca.go │ │ │ ├── initca_test.go │ │ │ └── testdata │ │ │ │ ├── 5min-ecdsa-key.pem │ │ │ │ ├── 5min-ecdsa.pem │ │ │ │ ├── 5min-rsa-key.pem │ │ │ │ ├── 5min-rsa.pem │ │ │ │ ├── README.md │ │ │ │ ├── ca_csr_ecdsa.json │ │ │ │ ├── ca_csr_rsa.json │ │ │ │ ├── ecdsa256.csr │ │ │ │ ├── ecdsa384.csr │ │ │ │ ├── ecdsa521.csr │ │ │ │ ├── rsa2048.csr │ │ │ │ ├── rsa3072.csr │ │ │ │ └── rsa4096.csr │ │ │ ├── log │ │ │ ├── log.go │ │ │ └── log_test.go │ │ │ ├── multiroot │ │ │ └── config │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ └── testdata │ │ │ │ ├── bad-db-config.json │ │ │ │ ├── bad.conf │ │ │ │ ├── badconfig.json │ │ │ │ ├── config.json │ │ │ │ ├── db-config.json │ │ │ │ ├── roots.conf │ │ │ │ ├── roots_bad_certificate.conf │ │ │ │ ├── roots_bad_db.conf │ │ │ │ ├── roots_bad_private_key.conf │ │ │ │ ├── roots_bad_whitelist.conf │ │ │ │ ├── roots_bad_whitelist2.conf │ │ │ │ ├── roots_badconfig.conf │ │ │ │ ├── roots_badspec.conf │ │ │ │ ├── roots_badspec2.conf │ │ │ │ ├── roots_badspec3.conf │ │ │ │ ├── roots_db.conf │ │ │ │ ├── roots_der.conf │ │ │ │ ├── roots_ksm.conf │ │ │ │ ├── roots_missing_certificate.conf │ │ │ │ ├── roots_missing_certificate_entry.conf │ │ │ │ ├── roots_missing_private.conf │ │ │ │ ├── roots_missing_private_key_entry.conf │ │ │ │ ├── roots_no_kdl_private_key.conf │ │ │ │ ├── roots_whitelist.conf │ │ │ │ ├── roots_whitelist_ipv6.conf │ │ │ │ ├── server.crt │ │ │ │ ├── server.der │ │ │ │ ├── server.key │ │ │ │ ├── test.conf │ │ │ │ └── test2.conf │ │ │ ├── ocsp │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── ocsp.go │ │ │ ├── ocsp_test.go │ │ │ ├── responder.go │ │ │ ├── responder_test.go │ │ │ ├── testdata │ │ │ │ ├── ca-key.pem │ │ │ │ ├── ca.pem │ │ │ │ ├── cert.pem │ │ │ │ ├── db-config.json │ │ │ │ ├── resp64.pem │ │ │ │ ├── response.der │ │ │ │ ├── response_broken.pem │ │ │ │ ├── response_mix.pem │ │ │ │ ├── server.crt │ │ │ │ ├── server.key │ │ │ │ ├── server_broken.crt │ │ │ │ ├── server_broken.key │ │ │ │ ├── sqlite_ca.pem │ │ │ │ └── sqlite_test.db │ │ │ └── universal │ │ │ │ └── universal.go │ │ │ ├── revoke │ │ │ ├── revoke.go │ │ │ └── revoke_test.go │ │ │ ├── scan │ │ │ ├── broad.go │ │ │ ├── connectivity.go │ │ │ ├── pki.go │ │ │ ├── scan_common.go │ │ │ ├── scan_common_test.go │ │ │ ├── tls_handshake.go │ │ │ └── tls_session.go │ │ │ ├── script │ │ │ ├── build │ │ │ └── build-docker │ │ │ ├── selfsign │ │ │ ├── selfsign.go │ │ │ ├── selfsign_test.go │ │ │ └── testdata │ │ │ │ ├── localhost.csr │ │ │ │ └── localhost.key │ │ │ ├── signer │ │ │ ├── local │ │ │ │ ├── local.go │ │ │ │ ├── local_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── build_inter_pathlen_csrs.sh │ │ │ │ │ ├── ca.pem │ │ │ │ │ ├── ca_key.pem │ │ │ │ │ ├── ecdsa256-inter.csr │ │ │ │ │ ├── ecdsa256-inter.key │ │ │ │ │ ├── ecdsa256.csr │ │ │ │ │ ├── ecdsa256_ca.pem │ │ │ │ │ ├── ecdsa256_ca_key.pem │ │ │ │ │ ├── ecdsa384.csr │ │ │ │ │ ├── ecdsa521.csr │ │ │ │ │ ├── ex.csr │ │ │ │ │ ├── inter_pathlen_0.csr │ │ │ │ │ ├── inter_pathlen_1.csr │ │ │ │ │ ├── inter_pathlen_unspecified.csr │ │ │ │ │ ├── ip.csr │ │ │ │ │ ├── key.pem │ │ │ │ │ ├── rsa-old.csr │ │ │ │ │ ├── rsa2048-inter.csr │ │ │ │ │ ├── rsa2048-inter.key │ │ │ │ │ ├── rsa2048.csr │ │ │ │ │ ├── rsa3072.csr │ │ │ │ │ ├── rsa4096.csr │ │ │ │ │ ├── san_domain.csr │ │ │ │ │ └── test.csr │ │ │ ├── remote │ │ │ │ ├── remote.go │ │ │ │ ├── remote_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── README.md │ │ │ │ │ ├── ca.pem │ │ │ │ │ ├── ca_key.pem │ │ │ │ │ ├── client-key.pem │ │ │ │ │ ├── client.json │ │ │ │ │ ├── client.pem │ │ │ │ │ ├── config.json │ │ │ │ │ ├── server-key.pem │ │ │ │ │ ├── server.json │ │ │ │ │ └── server.pem │ │ │ ├── signer.go │ │ │ ├── signer_test.go │ │ │ └── universal │ │ │ │ ├── universal.go │ │ │ │ └── universal_test.go │ │ │ ├── test.sh │ │ │ ├── testdata │ │ │ ├── csr.json │ │ │ ├── garbage.crt │ │ │ ├── garbage.key │ │ │ ├── gd_bundle.crt │ │ │ ├── good_config.json │ │ │ ├── roots │ │ │ │ └── httplib2_cacerts.txt │ │ │ ├── server.crt │ │ │ ├── server.csr │ │ │ ├── server.key │ │ │ ├── ssl-verifier.sh │ │ │ ├── temp.crt │ │ │ └── test.py │ │ │ ├── transport │ │ │ ├── ca │ │ │ │ ├── cert_provider.go │ │ │ │ ├── cfssl_provider.go │ │ │ │ └── localca │ │ │ │ │ ├── signer.go │ │ │ │ │ └── signer_test.go │ │ │ ├── client.go │ │ │ ├── core │ │ │ │ ├── backoff.go │ │ │ │ ├── backoff_test.go │ │ │ │ ├── defs.go │ │ │ │ └── rand.go │ │ │ ├── doc.go │ │ │ ├── example │ │ │ │ ├── README.md │ │ │ │ ├── ca.json │ │ │ │ ├── config.json │ │ │ │ ├── config_auth.json │ │ │ │ ├── exlib │ │ │ │ │ └── exlib.go │ │ │ │ ├── genca.sh │ │ │ │ ├── maclient │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client.json │ │ │ │ │ └── client_auth.json │ │ │ │ └── maserver │ │ │ │ │ ├── server.go │ │ │ │ │ ├── server.json │ │ │ │ │ └── server_auth.json │ │ │ ├── kp │ │ │ │ ├── key_provider.go │ │ │ │ └── key_provider_test.go │ │ │ ├── listener.go │ │ │ ├── roots │ │ │ │ ├── cfssl.go │ │ │ │ ├── doc.go │ │ │ │ ├── provider.go │ │ │ │ └── system │ │ │ │ │ ├── nilref_nil_darwin.go │ │ │ │ │ ├── nilref_zero_darwin.go │ │ │ │ │ ├── root.go │ │ │ │ │ ├── root_bsd.go │ │ │ │ │ ├── root_cgo_darwin.go │ │ │ │ │ ├── root_darwin.go │ │ │ │ │ ├── root_darwin_armx.go │ │ │ │ │ ├── root_darwin_test.go │ │ │ │ │ ├── root_linux.go │ │ │ │ │ ├── root_nacl.go │ │ │ │ │ ├── root_nocgo_darwin.go │ │ │ │ │ ├── root_plan9.go │ │ │ │ │ ├── root_solaris.go │ │ │ │ │ ├── root_unix.go │ │ │ │ │ └── root_windows.go │ │ │ └── transport_test.go │ │ │ ├── ubiquity │ │ │ ├── filter.go │ │ │ ├── performance.go │ │ │ ├── sha1.go │ │ │ ├── testdata │ │ │ │ ├── ca.pem.metadata │ │ │ │ ├── ecdsa256sha2.pem │ │ │ │ ├── ecdsa384sha2.pem │ │ │ │ ├── ecdsa521sha2.pem │ │ │ │ ├── godzilla.pem │ │ │ │ ├── macrosoft.pem │ │ │ │ ├── pineapple.pem │ │ │ │ ├── rsa1024sha1.pem │ │ │ │ ├── rsa2048sha2.pem │ │ │ │ ├── rsa3072sha2.pem │ │ │ │ └── rsa4096sha2.pem │ │ │ ├── ubiquity_crypto.go │ │ │ ├── ubiquity_platform.go │ │ │ └── ubiquity_test.go │ │ │ └── whitelist │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── example │ │ │ └── example_whitelist.go │ │ │ ├── http_test.go │ │ │ ├── lookup.go │ │ │ ├── whitelist.go │ │ │ ├── whitelist_net.go │ │ │ ├── whitelist_net_test.go │ │ │ └── whitelist_test.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cov_report.sh │ │ │ ├── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── common_test.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── dump_test.go │ │ │ ├── dumpcgo_test.go │ │ │ ├── dumpnocgo_test.go │ │ │ ├── example_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── internal_test.go │ │ │ ├── internalunsafe_test.go │ │ │ ├── spew.go │ │ │ ├── spew_test.go │ │ │ └── testdata │ │ │ │ └── dumpcgo.go │ │ │ └── test_coverage.txt │ ├── fsnotify │ │ └── fsnotify │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── example_test.go │ │ │ ├── fen.go │ │ │ ├── fsnotify.go │ │ │ ├── fsnotify_test.go │ │ │ ├── inotify.go │ │ │ ├── inotify_poller.go │ │ │ ├── inotify_poller_test.go │ │ │ ├── inotify_test.go │ │ │ ├── integration_darwin_test.go │ │ │ ├── integration_test.go │ │ │ ├── kqueue.go │ │ │ ├── open_mode_bsd.go │ │ │ ├── open_mode_darwin.go │ │ │ └── windows.go │ ├── golang │ │ ├── mock │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ ├── check_go_fmt.sh │ │ │ │ └── check_go_generate.sh │ │ │ ├── gomock │ │ │ │ ├── call.go │ │ │ │ ├── call_test.go │ │ │ │ ├── callset.go │ │ │ │ ├── callset_test.go │ │ │ │ ├── controller.go │ │ │ │ ├── controller_test.go │ │ │ │ ├── matchers.go │ │ │ │ ├── matchers_test.go │ │ │ │ └── mock_matcher │ │ │ │ │ └── mock_matcher.go │ │ │ ├── mockgen │ │ │ │ ├── mockgen.go │ │ │ │ ├── mockgen_test.go │ │ │ │ ├── model │ │ │ │ │ └── model.go │ │ │ │ ├── parse.go │ │ │ │ ├── parse_test.go │ │ │ │ ├── reflect.go │ │ │ │ └── tests │ │ │ │ │ ├── aux_imports_embedded_interface │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bugreport.go │ │ │ │ │ ├── bugreport_mock.go │ │ │ │ │ ├── bugreport_test.go │ │ │ │ │ └── faux │ │ │ │ │ │ └── faux.go │ │ │ │ │ ├── custom_package_name │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── client.go │ │ │ │ │ ├── greeter │ │ │ │ │ │ ├── greeter.go │ │ │ │ │ │ ├── greeter_mock_test.go │ │ │ │ │ │ └── greeter_test.go │ │ │ │ │ └── validator │ │ │ │ │ │ └── validate.go │ │ │ │ │ ├── empty_interface │ │ │ │ │ ├── input.go │ │ │ │ │ └── mock.go │ │ │ │ │ ├── generated_identifier_conflict │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bugreport.go │ │ │ │ │ ├── bugreport_mock.go │ │ │ │ │ └── bugreport_test.go │ │ │ │ │ ├── import_source │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── definition │ │ │ │ │ │ ├── source.go │ │ │ │ │ │ └── source_mock.go │ │ │ │ │ └── source_mock.go │ │ │ │ │ ├── internal_pkg │ │ │ │ │ ├── generate.go │ │ │ │ │ └── subdir │ │ │ │ │ │ └── internal │ │ │ │ │ │ └── pkg │ │ │ │ │ │ ├── input.go │ │ │ │ │ │ ├── reflect_output │ │ │ │ │ │ └── mock.go │ │ │ │ │ │ └── source_output │ │ │ │ │ │ └── mock.go │ │ │ │ │ ├── unexported_method │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bugreport.go │ │ │ │ │ ├── bugreport_mock.go │ │ │ │ │ └── bugreport_test.go │ │ │ │ │ ├── vendor_dep │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── mock.go │ │ │ │ │ ├── source_mock_package │ │ │ │ │ │ └── mock.go │ │ │ │ │ └── vendor_dep.go │ │ │ │ │ └── vendor_pkg │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ └── mock.go │ │ │ └── sample │ │ │ │ ├── README.md │ │ │ │ ├── concurrent │ │ │ │ ├── concurrent.go │ │ │ │ ├── concurrent_test.go │ │ │ │ └── mock │ │ │ │ │ └── concurrent_mock.go │ │ │ │ ├── imp1 │ │ │ │ └── imp1.go │ │ │ │ ├── imp2 │ │ │ │ └── imp2.go │ │ │ │ ├── imp3 │ │ │ │ └── imp3.go │ │ │ │ ├── imp4 │ │ │ │ └── imp4.go │ │ │ │ ├── mock_user │ │ │ │ └── mock_user.go │ │ │ │ ├── user.go │ │ │ │ └── user_test.go │ │ └── protobuf │ │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.md │ │ │ │ ├── feature_request.md │ │ │ │ └── question.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── conformance │ │ │ ├── Makefile │ │ │ ├── conformance.go │ │ │ ├── conformance.sh │ │ │ ├── failure_list_go.txt │ │ │ ├── internal │ │ │ │ └── conformance_proto │ │ │ │ │ ├── conformance.pb.go │ │ │ │ │ └── conformance.proto │ │ │ └── test.sh │ │ │ ├── descriptor │ │ │ ├── descriptor.go │ │ │ └── descriptor_test.go │ │ │ ├── jsonpb │ │ │ ├── jsonpb.go │ │ │ ├── jsonpb_test.go │ │ │ └── jsonpb_test_proto │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ ├── more_test_objects.proto │ │ │ │ ├── test_objects.pb.go │ │ │ │ └── test_objects.proto │ │ │ ├── proto │ │ │ ├── all_test.go │ │ │ ├── any_test.go │ │ │ ├── clone.go │ │ │ ├── clone_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── discard.go │ │ │ ├── discard_test.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── equal.go │ │ │ ├── equal_test.go │ │ │ ├── extensions.go │ │ │ ├── extensions_test.go │ │ │ ├── lib.go │ │ │ ├── map_test.go │ │ │ ├── message_set.go │ │ │ ├── message_set_test.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── proto3_proto │ │ │ │ ├── proto3.pb.go │ │ │ │ └── proto3.proto │ │ │ ├── proto3_test.go │ │ │ ├── size2_test.go │ │ │ ├── size_test.go │ │ │ ├── table_marshal.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── test_proto │ │ │ │ ├── test.pb.go │ │ │ │ └── test.proto │ │ │ ├── text.go │ │ │ ├── text_parser.go │ │ │ ├── text_parser_test.go │ │ │ └── text_test.go │ │ │ ├── protoc-gen-go │ │ │ ├── descriptor │ │ │ │ ├── descriptor.pb.go │ │ │ │ └── descriptor.proto │ │ │ ├── doc.go │ │ │ ├── generator │ │ │ │ ├── generator.go │ │ │ │ ├── internal │ │ │ │ │ └── remap │ │ │ │ │ │ ├── remap.go │ │ │ │ │ │ └── remap_test.go │ │ │ │ └── name_test.go │ │ │ ├── golden_test.go │ │ │ ├── grpc │ │ │ │ └── grpc.go │ │ │ ├── link_grpc.go │ │ │ ├── main.go │ │ │ ├── plugin │ │ │ │ ├── plugin.pb.go │ │ │ │ ├── plugin.pb.golden │ │ │ │ └── plugin.proto │ │ │ └── testdata │ │ │ │ ├── deprecated │ │ │ │ ├── deprecated.pb.go │ │ │ │ └── deprecated.proto │ │ │ │ ├── extension_base │ │ │ │ ├── extension_base.pb.go │ │ │ │ └── extension_base.proto │ │ │ │ ├── extension_extra │ │ │ │ ├── extension_extra.pb.go │ │ │ │ └── extension_extra.proto │ │ │ │ ├── extension_test.go │ │ │ │ ├── extension_user │ │ │ │ ├── extension_user.pb.go │ │ │ │ └── extension_user.proto │ │ │ │ ├── grpc │ │ │ │ ├── grpc.pb.go │ │ │ │ └── grpc.proto │ │ │ │ ├── import_public │ │ │ │ ├── a.pb.go │ │ │ │ ├── a.proto │ │ │ │ ├── b.pb.go │ │ │ │ ├── b.proto │ │ │ │ └── sub │ │ │ │ │ ├── a.pb.go │ │ │ │ │ ├── a.proto │ │ │ │ │ ├── b.pb.go │ │ │ │ │ └── b.proto │ │ │ │ ├── import_public_test.go │ │ │ │ ├── imports │ │ │ │ ├── fmt │ │ │ │ │ ├── m.pb.go │ │ │ │ │ └── m.proto │ │ │ │ ├── test_a_1 │ │ │ │ │ ├── m1.pb.go │ │ │ │ │ ├── m1.proto │ │ │ │ │ ├── m2.pb.go │ │ │ │ │ └── m2.proto │ │ │ │ ├── test_a_2 │ │ │ │ │ ├── m3.pb.go │ │ │ │ │ ├── m3.proto │ │ │ │ │ ├── m4.pb.go │ │ │ │ │ └── m4.proto │ │ │ │ ├── test_b_1 │ │ │ │ │ ├── m1.pb.go │ │ │ │ │ ├── m1.proto │ │ │ │ │ ├── m2.pb.go │ │ │ │ │ └── m2.proto │ │ │ │ ├── test_import_a1m1.pb.go │ │ │ │ ├── test_import_a1m1.proto │ │ │ │ ├── test_import_a1m2.pb.go │ │ │ │ ├── test_import_a1m2.proto │ │ │ │ ├── test_import_all.pb.go │ │ │ │ └── test_import_all.proto │ │ │ │ ├── main_test.go │ │ │ │ ├── multi │ │ │ │ ├── multi1.pb.go │ │ │ │ ├── multi1.proto │ │ │ │ ├── multi2.pb.go │ │ │ │ ├── multi2.proto │ │ │ │ ├── multi3.pb.go │ │ │ │ └── multi3.proto │ │ │ │ ├── my_test │ │ │ │ ├── test.pb.go │ │ │ │ └── test.proto │ │ │ │ └── proto3 │ │ │ │ ├── proto3.pb.go │ │ │ │ └── proto3.proto │ │ │ ├── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ │ ├── any.pb.go │ │ │ │ └── any.proto │ │ │ ├── any_test.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ │ ├── duration.pb.go │ │ │ │ └── duration.proto │ │ │ ├── duration_test.go │ │ │ ├── empty │ │ │ │ ├── empty.pb.go │ │ │ │ └── empty.proto │ │ │ ├── struct │ │ │ │ ├── struct.pb.go │ │ │ │ └── struct.proto │ │ │ ├── timestamp.go │ │ │ ├── timestamp │ │ │ │ ├── timestamp.pb.go │ │ │ │ └── timestamp.proto │ │ │ ├── timestamp_test.go │ │ │ └── wrappers │ │ │ │ ├── wrappers.pb.go │ │ │ │ └── wrappers.proto │ │ │ └── regenerate.sh │ ├── google │ │ └── certificate-transparency-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── asn1 │ │ │ ├── asn1.go │ │ │ ├── asn1_test.go │ │ │ ├── common.go │ │ │ ├── marshal.go │ │ │ └── marshal_test.go │ │ │ ├── client │ │ │ ├── configpb │ │ │ │ ├── gen.go │ │ │ │ ├── multilog.pb.go │ │ │ │ └── multilog.proto │ │ │ ├── ctclient │ │ │ │ └── ctclient.go │ │ │ ├── getentries.go │ │ │ ├── logclient.go │ │ │ ├── logclient_test.go │ │ │ ├── multilog.go │ │ │ └── multilog_test.go │ │ │ ├── fixchain │ │ │ ├── chainfix │ │ │ │ └── chainfix.go │ │ │ ├── chains_test.go │ │ │ ├── containers.go │ │ │ ├── fix.go │ │ │ ├── fix_and_log.go │ │ │ ├── fix_and_log_test.go │ │ │ ├── fix_error.go │ │ │ ├── fix_error_test.go │ │ │ ├── fix_test.go │ │ │ ├── fixchain_test.go │ │ │ ├── fixer.go │ │ │ ├── fixer_test.go │ │ │ ├── functions_test.go │ │ │ ├── hash.go │ │ │ ├── hash_test.go │ │ │ ├── logger.go │ │ │ ├── logger_test.go │ │ │ ├── ratelimiter │ │ │ │ ├── limiter.go │ │ │ │ └── limiter_test.go │ │ │ ├── replacements.go │ │ │ ├── roundtrip_test.go │ │ │ └── url_cache.go │ │ │ ├── gometalinter.json │ │ │ ├── gossip │ │ │ ├── gossip_server │ │ │ │ └── gossip_server.go │ │ │ ├── handler.go │ │ │ ├── handler_test.go │ │ │ ├── storage.go │ │ │ └── types.go │ │ │ ├── ingestor │ │ │ └── ranges │ │ │ │ ├── tracker.go │ │ │ │ └── tracker_test.go │ │ │ ├── jsonclient │ │ │ ├── backoff.go │ │ │ ├── backoff_test.go │ │ │ ├── client.go │ │ │ └── client_test.go │ │ │ ├── logid │ │ │ ├── logid.go │ │ │ └── logid_test.go │ │ │ ├── merkletree │ │ │ ├── merkle_tree_interface.go │ │ │ ├── merkle_verifier.go │ │ │ ├── merkle_verifier_test.go │ │ │ ├── tree_hasher.go │ │ │ └── tree_hasher_test.go │ │ │ ├── preload │ │ │ ├── dumpscts │ │ │ │ └── dumpscts.go │ │ │ ├── preloader │ │ │ │ └── preloader.go │ │ │ └── types.go │ │ │ ├── scanner │ │ │ ├── matcher.go │ │ │ ├── scanlog │ │ │ │ └── scanlog.go │ │ │ ├── scanner.go │ │ │ ├── scanner_test.go │ │ │ └── scanner_test_data.go │ │ │ ├── scripts │ │ │ ├── check_forked.sh │ │ │ ├── check_license.sh │ │ │ └── presubmit.sh │ │ │ ├── serialization.go │ │ │ ├── serialization_test.go │ │ │ ├── signatures.go │ │ │ ├── signatures_test.go │ │ │ ├── testdata │ │ │ ├── argon.cfg │ │ │ ├── certs.go │ │ │ ├── keys.go │ │ │ ├── test-cert.pem │ │ │ └── test-cert.proof │ │ │ ├── third_party │ │ │ └── prometheus │ │ │ │ └── LICENSE │ │ │ ├── tls │ │ │ ├── hash_test.go │ │ │ ├── signature.go │ │ │ ├── signature_test.go │ │ │ ├── tls.go │ │ │ ├── tls_test.go │ │ │ ├── types.go │ │ │ └── types_test.go │ │ │ ├── trillian │ │ │ ├── ctfe │ │ │ │ ├── cert_checker.go │ │ │ │ ├── cert_checker_test.go │ │ │ │ ├── configpb │ │ │ │ │ ├── config.pb.go │ │ │ │ │ ├── config.proto │ │ │ │ │ └── gen.go │ │ │ │ ├── ct_server │ │ │ │ │ └── main.go │ │ │ │ ├── doc.go │ │ │ │ ├── handlers.go │ │ │ │ ├── handlers_test.go │ │ │ │ ├── instance.go │ │ │ │ ├── instance_test.go │ │ │ │ ├── pem_cert_pool.go │ │ │ │ ├── pem_cert_pool_test.go │ │ │ │ ├── requestlog.go │ │ │ │ ├── serialize.go │ │ │ │ ├── serialize_test.go │ │ │ │ ├── structures.go │ │ │ │ ├── structures_test.go │ │ │ │ └── testonly │ │ │ │ │ ├── certificates.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── keys.go │ │ │ ├── examples │ │ │ │ └── deployment │ │ │ │ │ └── docker │ │ │ │ │ └── ctfe │ │ │ │ │ └── Dockerfile │ │ │ ├── integration │ │ │ │ ├── consoles │ │ │ │ │ ├── reads.html │ │ │ │ │ ├── signer.html │ │ │ │ │ ├── trillian.html │ │ │ │ │ └── writes.html │ │ │ │ ├── ct_functions.sh │ │ │ │ ├── ct_hammer │ │ │ │ │ └── main.go │ │ │ │ ├── ct_hammer_test.sh │ │ │ │ ├── ct_integration.go │ │ │ │ ├── ct_integration_test.cfg │ │ │ │ ├── ct_integration_test.go │ │ │ │ ├── ct_integration_test.sh │ │ │ │ ├── ct_killall.sh │ │ │ │ ├── hammer.go │ │ │ │ ├── hammer_test.go │ │ │ │ ├── integration_test.sh │ │ │ │ ├── logenv.go │ │ │ │ └── prometheus.yml │ │ │ ├── mockclient │ │ │ │ ├── gen.go │ │ │ │ └── mock_log_client.go │ │ │ ├── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── ct-http-server.privkey.pem │ │ │ │ ├── ct-http-server.pubkey.pem │ │ │ │ ├── fake-ca.cert │ │ │ │ ├── fake-ca.cfg │ │ │ │ ├── fake-ca.privkey.pem │ │ │ │ ├── int-ca.cert │ │ │ │ ├── int-ca.cfg │ │ │ │ ├── int-ca.csr.pem │ │ │ │ ├── int-ca.privkey.pem │ │ │ │ ├── keys.go │ │ │ │ ├── leaf.privkey.pem │ │ │ │ ├── leaf01.cert │ │ │ │ ├── leaf01.chain │ │ │ │ ├── leaf02.cert │ │ │ │ ├── leaf02.chain │ │ │ │ ├── leaf03.cert │ │ │ │ ├── leaf03.chain │ │ │ │ ├── leaf04.cert │ │ │ │ ├── leaf04.chain │ │ │ │ ├── leaf05.cert │ │ │ │ ├── leaf05.chain │ │ │ │ ├── leaf06.cert │ │ │ │ ├── leaf06.chain │ │ │ │ ├── leaf07.cert │ │ │ │ ├── leaf07.chain │ │ │ │ ├── leaf08.cert │ │ │ │ ├── leaf08.chain │ │ │ │ ├── leaf09.cert │ │ │ │ ├── leaf09.chain │ │ │ │ ├── leaf10.cert │ │ │ │ ├── leaf10.chain │ │ │ │ ├── leaf11.cert │ │ │ │ ├── leaf11.chain │ │ │ │ ├── leaf12.cert │ │ │ │ ├── leaf12.chain │ │ │ │ ├── leaf13.cert │ │ │ │ ├── leaf13.chain │ │ │ │ ├── leaf14.cert │ │ │ │ ├── leaf14.chain │ │ │ │ ├── leaf15.cert │ │ │ │ ├── leaf15.chain │ │ │ │ ├── leaf16.cert │ │ │ │ ├── leaf16.chain │ │ │ │ ├── leaf17.cert │ │ │ │ ├── leaf17.chain │ │ │ │ ├── leaf18.cert │ │ │ │ ├── leaf18.chain │ │ │ │ ├── leaf19.cert │ │ │ │ ├── leaf19.chain │ │ │ │ ├── leaf20.cert │ │ │ │ ├── leaf20.chain │ │ │ │ ├── log-rpc-server.privkey.pem │ │ │ │ ├── log-rpc-server.pubkey.pem │ │ │ │ └── signer.go │ │ │ └── util │ │ │ │ ├── resolver.go │ │ │ │ ├── resolver_test.go │ │ │ │ └── timesource.go │ │ │ ├── types.go │ │ │ ├── types_test.go │ │ │ ├── x509 │ │ │ ├── cert_pool.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── example_test.go │ │ │ ├── name_constraints_test.go │ │ │ ├── names.go │ │ │ ├── names_test.go │ │ │ ├── nilref_nil_darwin.go │ │ │ ├── nilref_zero_darwin.go │ │ │ ├── pem_decrypt.go │ │ │ ├── pem_decrypt_test.go │ │ │ ├── pkcs1.go │ │ │ ├── pkcs8.go │ │ │ ├── pkcs8_test.go │ │ │ ├── pkix │ │ │ │ └── pkix.go │ │ │ ├── revoked.go │ │ │ ├── revoked_test.go │ │ │ ├── root.go │ │ │ ├── root_bsd.go │ │ │ ├── root_cgo_darwin.go │ │ │ ├── root_darwin.go │ │ │ ├── root_darwin_arm_gen.go │ │ │ ├── root_darwin_armx.go │ │ │ ├── root_darwin_test.go │ │ │ ├── root_linux.go │ │ │ ├── root_nacl.go │ │ │ ├── root_nocgo_darwin.go │ │ │ ├── root_plan9.go │ │ │ ├── root_solaris.go │ │ │ ├── root_unix.go │ │ │ ├── root_unix_test.go │ │ │ ├── root_windows.go │ │ │ ├── sec1.go │ │ │ ├── sec1_test.go │ │ │ ├── sha2_windows_test.go │ │ │ ├── test-dir.crt │ │ │ ├── test-file.crt │ │ │ ├── testdata │ │ │ │ └── test-dir.crt │ │ │ ├── verify.go │ │ │ ├── verify_test.go │ │ │ ├── x509.go │ │ │ ├── x509_test.go │ │ │ └── x509_test_import.go │ │ │ └── x509util │ │ │ ├── certcheck │ │ │ └── certcheck.go │ │ │ ├── crlcheck │ │ │ └── crlcheck.go │ │ │ ├── files.go │ │ │ ├── fuzz.go │ │ │ ├── revoked.go │ │ │ └── x509util.go │ ├── hashicorp │ │ └── hcl │ │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hcl.go │ │ │ ├── hcl │ │ │ ├── ast │ │ │ │ ├── ast.go │ │ │ │ ├── ast_test.go │ │ │ │ └── walk.go │ │ │ ├── fmtcmd │ │ │ │ ├── fmtcmd.go │ │ │ │ ├── fmtcmd_test.go │ │ │ │ └── test-fixtures │ │ │ │ │ ├── .hidden.ignore │ │ │ │ │ ├── dir.ignore │ │ │ │ │ ├── file.ignore │ │ │ │ │ └── good.hcl │ │ │ ├── parser │ │ │ │ ├── error.go │ │ │ │ ├── error_test.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_test.go │ │ │ │ └── test-fixtures │ │ │ │ │ ├── array_comment.hcl │ │ │ │ │ ├── array_comment_2.hcl │ │ │ │ │ ├── assign_colon.hcl │ │ │ │ │ ├── assign_deep.hcl │ │ │ │ │ ├── comment.hcl │ │ │ │ │ ├── comment_crlf.hcl │ │ │ │ │ ├── comment_lastline.hcl │ │ │ │ │ ├── comment_single.hcl │ │ │ │ │ ├── complex.hcl │ │ │ │ │ ├── complex_crlf.hcl │ │ │ │ │ ├── complex_key.hcl │ │ │ │ │ ├── empty.hcl │ │ │ │ │ ├── git_crypt.hcl │ │ │ │ │ ├── key_without_value.hcl │ │ │ │ │ ├── list.hcl │ │ │ │ │ ├── list_comma.hcl │ │ │ │ │ ├── missing_braces.hcl │ │ │ │ │ ├── multiple.hcl │ │ │ │ │ ├── object_key_assign_without_value.hcl │ │ │ │ │ ├── object_key_assign_without_value2.hcl │ │ │ │ │ ├── object_key_assign_without_value3.hcl │ │ │ │ │ ├── object_key_without_value.hcl │ │ │ │ │ ├── object_list_comma.hcl │ │ │ │ │ ├── old.hcl │ │ │ │ │ ├── structure.hcl │ │ │ │ │ ├── structure_basic.hcl │ │ │ │ │ ├── structure_empty.hcl │ │ │ │ │ ├── types.hcl │ │ │ │ │ ├── unterminated_object.hcl │ │ │ │ │ └── unterminated_object_2.hcl │ │ │ ├── printer │ │ │ │ ├── nodes.go │ │ │ │ ├── printer.go │ │ │ │ ├── printer_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── comment.golden │ │ │ │ │ ├── comment.input │ │ │ │ │ ├── comment_aligned.golden │ │ │ │ │ ├── comment_aligned.input │ │ │ │ │ ├── comment_array.golden │ │ │ │ │ ├── comment_array.input │ │ │ │ │ ├── comment_crlf.input │ │ │ │ │ ├── comment_end_file.golden │ │ │ │ │ ├── comment_end_file.input │ │ │ │ │ ├── comment_multiline_indent.golden │ │ │ │ │ ├── comment_multiline_indent.input │ │ │ │ │ ├── comment_multiline_no_stanza.golden │ │ │ │ │ ├── comment_multiline_no_stanza.input │ │ │ │ │ ├── comment_multiline_stanza.golden │ │ │ │ │ ├── comment_multiline_stanza.input │ │ │ │ │ ├── comment_newline.golden │ │ │ │ │ ├── comment_newline.input │ │ │ │ │ ├── comment_object_multi.golden │ │ │ │ │ ├── comment_object_multi.input │ │ │ │ │ ├── comment_standalone.golden │ │ │ │ │ ├── comment_standalone.input │ │ │ │ │ ├── complexhcl.golden │ │ │ │ │ ├── complexhcl.input │ │ │ │ │ ├── empty_block.golden │ │ │ │ │ ├── empty_block.input │ │ │ │ │ ├── list.golden │ │ │ │ │ ├── list.input │ │ │ │ │ ├── list_comment.golden │ │ │ │ │ ├── list_comment.input │ │ │ │ │ ├── list_of_objects.golden │ │ │ │ │ ├── list_of_objects.input │ │ │ │ │ ├── multiline_string.golden │ │ │ │ │ ├── multiline_string.input │ │ │ │ │ ├── object_singleline.golden │ │ │ │ │ ├── object_singleline.input │ │ │ │ │ ├── object_with_heredoc.golden │ │ │ │ │ └── object_with_heredoc.input │ │ │ ├── scanner │ │ │ │ ├── scanner.go │ │ │ │ └── scanner_test.go │ │ │ ├── strconv │ │ │ │ ├── quote.go │ │ │ │ └── quote_test.go │ │ │ ├── test-fixtures │ │ │ │ ├── array_comment.hcl │ │ │ │ ├── assign_colon.hcl │ │ │ │ ├── comment.hcl │ │ │ │ ├── comment_single.hcl │ │ │ │ ├── complex.hcl │ │ │ │ ├── complex_key.hcl │ │ │ │ ├── empty.hcl │ │ │ │ ├── list.hcl │ │ │ │ ├── list_comma.hcl │ │ │ │ ├── multiple.hcl │ │ │ │ ├── old.hcl │ │ │ │ ├── structure.hcl │ │ │ │ ├── structure_basic.hcl │ │ │ │ ├── structure_empty.hcl │ │ │ │ └── types.hcl │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ ├── token.go │ │ │ │ └── token_test.go │ │ │ ├── hcl_test.go │ │ │ ├── json │ │ │ ├── parser │ │ │ │ ├── flatten.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_test.go │ │ │ │ └── test-fixtures │ │ │ │ │ ├── array.json │ │ │ │ │ ├── bad_input_128.json │ │ │ │ │ ├── bad_input_tf_8110.json │ │ │ │ │ ├── basic.json │ │ │ │ │ ├── good_input_tf_8110.json │ │ │ │ │ ├── object.json │ │ │ │ │ └── types.json │ │ │ ├── scanner │ │ │ │ ├── scanner.go │ │ │ │ └── scanner_test.go │ │ │ ├── test-fixtures │ │ │ │ ├── array.json │ │ │ │ ├── basic.json │ │ │ │ ├── object.json │ │ │ │ └── types.json │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ ├── token.go │ │ │ │ └── token_test.go │ │ │ ├── lex.go │ │ │ ├── lex_test.go │ │ │ ├── parse.go │ │ │ ├── test-fixtures │ │ │ ├── assign_deep.hcl │ │ │ ├── basic.hcl │ │ │ ├── basic.json │ │ │ ├── basic_int_string.hcl │ │ │ ├── basic_squish.hcl │ │ │ ├── block_assign.hcl │ │ │ ├── decode_policy.hcl │ │ │ ├── decode_policy.json │ │ │ ├── decode_tf_variable.hcl │ │ │ ├── decode_tf_variable.json │ │ │ ├── empty.hcl │ │ │ ├── escape.hcl │ │ │ ├── escape_backslash.hcl │ │ │ ├── flat.hcl │ │ │ ├── float.hcl │ │ │ ├── float.json │ │ │ ├── git_crypt.hcl │ │ │ ├── interpolate.json │ │ │ ├── list_of_lists.hcl │ │ │ ├── list_of_maps.hcl │ │ │ ├── multiline.hcl │ │ │ ├── multiline.json │ │ │ ├── multiline_bad.hcl │ │ │ ├── multiline_indented.hcl │ │ │ ├── multiline_literal.hcl │ │ │ ├── multiline_literal_with_hil.hcl │ │ │ ├── multiline_no_eof.hcl │ │ │ ├── multiline_no_hanging_indent.hcl │ │ │ ├── multiline_no_marker.hcl │ │ │ ├── nested_block_comment.hcl │ │ │ ├── nested_provider_bad.hcl │ │ │ ├── null_strings.json │ │ │ ├── object_list.json │ │ │ ├── object_with_bool.hcl │ │ │ ├── scientific.hcl │ │ │ ├── scientific.json │ │ │ ├── slice_expand.hcl │ │ │ ├── structure.hcl │ │ │ ├── structure.json │ │ │ ├── structure2.hcl │ │ │ ├── structure2.json │ │ │ ├── structure_flat.json │ │ │ ├── structure_flatmap.hcl │ │ │ ├── structure_list.hcl │ │ │ ├── structure_list.json │ │ │ ├── structure_list_deep.json │ │ │ ├── structure_list_empty.json │ │ │ ├── structure_multi.hcl │ │ │ ├── structure_multi.json │ │ │ ├── terraform_heroku.hcl │ │ │ ├── terraform_heroku.json │ │ │ ├── terraform_variable_invalid.json │ │ │ ├── tfvars.hcl │ │ │ ├── unterminated_block_comment.hcl │ │ │ └── unterminated_brace.hcl │ │ │ └── testhelper │ │ │ └── unix2dos.go │ ├── hyperledger │ │ └── fabric-sdk-go │ │ │ ├── .gitignore │ │ │ ├── .gitreview │ │ │ ├── CHANGELOG.md │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── ci.properties │ │ │ ├── doc.go │ │ │ ├── gometalinter.json │ │ │ ├── internal │ │ │ └── github.com │ │ │ │ └── hyperledger │ │ │ │ ├── fabric-ca │ │ │ │ ├── api │ │ │ │ │ ├── client.go │ │ │ │ │ └── net.go │ │ │ │ ├── lib │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client │ │ │ │ │ │ └── credential │ │ │ │ │ │ │ ├── credential.go │ │ │ │ │ │ │ └── x509 │ │ │ │ │ │ │ ├── credential.go │ │ │ │ │ │ │ └── signer.go │ │ │ │ │ ├── clientconfig.go │ │ │ │ │ ├── common │ │ │ │ │ │ └── serverresponses.go │ │ │ │ │ ├── identity.go │ │ │ │ │ ├── sdkpatch_serverstruct.go │ │ │ │ │ ├── serverrevoke.go │ │ │ │ │ ├── streamer │ │ │ │ │ │ └── jsonstreamer.go │ │ │ │ │ ├── tls │ │ │ │ │ │ └── tls.go │ │ │ │ │ └── util.go │ │ │ │ ├── sdkpatch │ │ │ │ │ ├── cryptosuitebridge │ │ │ │ │ │ └── cryptosuitebridge.go │ │ │ │ │ └── logbridge │ │ │ │ │ │ ├── logbridge.go │ │ │ │ │ │ └── syslogwriter.go │ │ │ │ └── util │ │ │ │ │ ├── csp.go │ │ │ │ │ └── util.go │ │ │ │ └── fabric │ │ │ │ ├── bccsp │ │ │ │ ├── aesopts.go │ │ │ │ ├── bccsp.go │ │ │ │ ├── ecdsaopts.go │ │ │ │ ├── factory │ │ │ │ │ ├── pkcs11 │ │ │ │ │ │ └── pkcs11factory.go │ │ │ │ │ ├── plugin │ │ │ │ │ │ └── pluginfactory.go │ │ │ │ │ └── sw │ │ │ │ │ │ └── swfactory.go │ │ │ │ ├── hashopts.go │ │ │ │ ├── keystore.go │ │ │ │ ├── opts.go │ │ │ │ ├── pkcs11 │ │ │ │ │ ├── conf.go │ │ │ │ │ ├── ecdsa.go │ │ │ │ │ ├── ecdsakey.go │ │ │ │ │ ├── impl.go │ │ │ │ │ └── pkcs11.go │ │ │ │ ├── rsaopts.go │ │ │ │ ├── signer │ │ │ │ │ └── signer.go │ │ │ │ ├── sw │ │ │ │ │ ├── aes.go │ │ │ │ │ ├── aeskey.go │ │ │ │ │ ├── conf.go │ │ │ │ │ ├── dummyks.go │ │ │ │ │ ├── ecdsa.go │ │ │ │ │ ├── ecdsakey.go │ │ │ │ │ ├── fileks.go │ │ │ │ │ ├── hash.go │ │ │ │ │ ├── impl.go │ │ │ │ │ ├── internals.go │ │ │ │ │ ├── keyderiv.go │ │ │ │ │ ├── keygen.go │ │ │ │ │ ├── keyimport.go │ │ │ │ │ ├── new.go │ │ │ │ │ ├── rsa.go │ │ │ │ │ └── rsakey.go │ │ │ │ └── utils │ │ │ │ │ ├── ecdsa.go │ │ │ │ │ ├── errs.go │ │ │ │ │ ├── io.go │ │ │ │ │ ├── keys.go │ │ │ │ │ ├── slice.go │ │ │ │ │ └── x509.go │ │ │ │ ├── common │ │ │ │ ├── attrmgr │ │ │ │ │ └── attrmgr.go │ │ │ │ ├── channelconfig │ │ │ │ │ ├── applicationorg.go │ │ │ │ │ ├── channel.go │ │ │ │ │ ├── orderer.go │ │ │ │ │ ├── organization.go │ │ │ │ │ └── util.go │ │ │ │ ├── crypto │ │ │ │ │ ├── random.go │ │ │ │ │ └── signer.go │ │ │ │ ├── ledger │ │ │ │ │ └── ledger_interface.go │ │ │ │ └── util │ │ │ │ │ └── utils.go │ │ │ │ ├── core │ │ │ │ └── ledger │ │ │ │ │ ├── kvledger │ │ │ │ │ └── txmgmt │ │ │ │ │ │ └── version │ │ │ │ │ │ └── version.go │ │ │ │ │ └── ledger_interface.go │ │ │ │ ├── discovery │ │ │ │ └── client │ │ │ │ │ ├── api.go │ │ │ │ │ ├── client.go │ │ │ │ │ └── selection.go │ │ │ │ ├── events │ │ │ │ └── consumer │ │ │ │ │ ├── adapter.go │ │ │ │ │ └── consumer.go │ │ │ │ ├── gossip │ │ │ │ └── util │ │ │ │ │ └── misc.go │ │ │ │ ├── msp │ │ │ │ ├── cache │ │ │ │ │ └── cache.go │ │ │ │ ├── cert.go │ │ │ │ ├── configbuilder.go │ │ │ │ ├── factory.go │ │ │ │ ├── identities.go │ │ │ │ ├── msp.go │ │ │ │ ├── mspimpl.go │ │ │ │ ├── mspimplsetup.go │ │ │ │ ├── mspimplvalidate.go │ │ │ │ └── mspmgrimpl.go │ │ │ │ ├── protos │ │ │ │ ├── discovery │ │ │ │ │ ├── extensions.go │ │ │ │ │ └── protocol.pb.go │ │ │ │ ├── gossip │ │ │ │ │ ├── extensions.go │ │ │ │ │ └── message.pb.go │ │ │ │ └── orderer │ │ │ │ │ └── ab.pb.go │ │ │ │ └── sdkpatch │ │ │ │ ├── cryptosuitebridge │ │ │ │ └── cryptosuitebridge.go │ │ │ │ └── logbridge │ │ │ │ └── logbridge.go │ │ │ ├── pkg │ │ │ ├── client │ │ │ │ ├── channel │ │ │ │ │ ├── api.go │ │ │ │ │ ├── api_test.go │ │ │ │ │ ├── chclient.go │ │ │ │ │ ├── chclient_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ └── invoke │ │ │ │ │ │ ├── api.go │ │ │ │ │ │ ├── signature.go │ │ │ │ │ │ ├── signature_test.go │ │ │ │ │ │ ├── txnhandler.go │ │ │ │ │ │ └── txnhandler_test.go │ │ │ │ ├── common │ │ │ │ │ ├── discovery │ │ │ │ │ │ ├── discoveryfilter.go │ │ │ │ │ │ ├── discoveryfilter_test.go │ │ │ │ │ │ ├── dynamicdiscovery │ │ │ │ │ │ │ ├── chservice.go │ │ │ │ │ │ │ ├── chservice_test.go │ │ │ │ │ │ │ ├── localprovider.go │ │ │ │ │ │ │ ├── localprovider_test.go │ │ │ │ │ │ │ ├── localservice.go │ │ │ │ │ │ │ ├── localservice_test.go │ │ │ │ │ │ │ ├── opts.go │ │ │ │ │ │ │ └── service.go │ │ │ │ │ │ ├── greylist │ │ │ │ │ │ │ ├── greylist.go │ │ │ │ │ │ │ └── greylist_test.go │ │ │ │ │ │ └── staticdiscovery │ │ │ │ │ │ │ ├── localprovider.go │ │ │ │ │ │ │ ├── localservice.go │ │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ │ └── staticdiscovery_test.go │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── endpoint.go │ │ │ │ │ │ └── endpoint_test.go │ │ │ │ │ ├── mocks │ │ │ │ │ │ ├── mockdiscovery.go │ │ │ │ │ │ ├── mockdiscoveryclient.go │ │ │ │ │ │ ├── mockselection.go │ │ │ │ │ │ └── mocktransactor.go │ │ │ │ │ ├── selection │ │ │ │ │ │ ├── dynamicselection │ │ │ │ │ │ │ ├── ccpolicyprovider.go │ │ │ │ │ │ │ ├── ccpolicyprovider_test.go │ │ │ │ │ │ │ ├── dynamicselection.go │ │ │ │ │ │ │ ├── dynamicselection_test.go │ │ │ │ │ │ │ └── pgresolver │ │ │ │ │ │ │ │ ├── groups.go │ │ │ │ │ │ │ │ ├── groups_test.go │ │ │ │ │ │ │ │ ├── groupsimpl.go │ │ │ │ │ │ │ │ ├── lbpolicyimpl.go │ │ │ │ │ │ │ │ ├── mocks.go │ │ │ │ │ │ │ │ ├── pgresolver.go │ │ │ │ │ │ │ │ ├── pgresolver_test.go │ │ │ │ │ │ │ │ └── pgresolverimpl.go │ │ │ │ │ │ ├── fabricselection │ │ │ │ │ │ │ ├── cachekey.go │ │ │ │ │ │ │ ├── fabricselection.go │ │ │ │ │ │ │ ├── opts.go │ │ │ │ │ │ │ ├── selection_test.go │ │ │ │ │ │ │ └── selectionfilter.go │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ └── opts.go │ │ │ │ │ │ └── staticselection │ │ │ │ │ │ │ ├── staticselection.go │ │ │ │ │ │ │ └── staticselection_test.go │ │ │ │ │ └── verifier │ │ │ │ │ │ └── signature.go │ │ │ │ ├── event │ │ │ │ │ ├── event.go │ │ │ │ │ ├── event_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ └── opts.go │ │ │ │ ├── ledger │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── ledger.go │ │ │ │ │ ├── ledger_test.go │ │ │ │ │ ├── opts.go │ │ │ │ │ └── opts_test.go │ │ │ │ ├── msp │ │ │ │ │ ├── ca.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ └── identity.go │ │ │ │ └── resmgmt │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── lscc.go │ │ │ │ │ ├── opts.go │ │ │ │ │ ├── opts_test.go │ │ │ │ │ ├── resmgmt.go │ │ │ │ │ ├── resmgmt_test.go │ │ │ │ │ └── testdata │ │ │ │ │ ├── extractcherr.tx │ │ │ │ │ ├── signcherr.tx │ │ │ │ │ └── test.tx │ │ │ ├── common │ │ │ │ ├── errors │ │ │ │ │ ├── multi │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ ├── multi.go │ │ │ │ │ │ └── multi_test.go │ │ │ │ │ ├── retry │ │ │ │ │ │ ├── defaults.go │ │ │ │ │ │ ├── invoker.go │ │ │ │ │ │ ├── invoker_test.go │ │ │ │ │ │ ├── retry.go │ │ │ │ │ │ └── retry_test.go │ │ │ │ │ └── status │ │ │ │ │ │ ├── codes.go │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ ├── status.go │ │ │ │ │ │ └── status_test.go │ │ │ │ ├── logging │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── logger_test.go │ │ │ │ │ └── logger_testing_env.go │ │ │ │ ├── options │ │ │ │ │ └── options.go │ │ │ │ └── providers │ │ │ │ │ ├── context │ │ │ │ │ └── context.go │ │ │ │ │ ├── core │ │ │ │ │ ├── cryptosuite.go │ │ │ │ │ ├── kvstore.go │ │ │ │ │ ├── provider.go │ │ │ │ │ └── signingmgr.go │ │ │ │ │ ├── fab │ │ │ │ │ ├── channel.go │ │ │ │ │ ├── context.go │ │ │ │ │ ├── eventservice.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── orderer.go │ │ │ │ │ ├── peer.go │ │ │ │ │ ├── proposer.go │ │ │ │ │ ├── provider.go │ │ │ │ │ └── sender.go │ │ │ │ │ ├── msp │ │ │ │ │ ├── identity.go │ │ │ │ │ ├── provider.go │ │ │ │ │ └── store.go │ │ │ │ │ └── test │ │ │ │ │ ├── mockcontext │ │ │ │ │ └── mockcontext.gen.go │ │ │ │ │ ├── mockcore │ │ │ │ │ └── mockcore.gen.go │ │ │ │ │ ├── mockfab │ │ │ │ │ ├── mockconfig.go │ │ │ │ │ └── mockfab.gen.go │ │ │ │ │ └── mockmsp │ │ │ │ │ └── mockmsp.gen.go │ │ │ ├── context │ │ │ │ └── context.go │ │ │ ├── core │ │ │ │ ├── config │ │ │ │ │ ├── comm │ │ │ │ │ │ ├── comm.go │ │ │ │ │ │ ├── comm_test.go │ │ │ │ │ │ ├── testdata │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ └── server.key │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ ├── certpool.go │ │ │ │ │ │ │ └── certpool_test.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_test.go │ │ │ │ │ ├── cryptoutil │ │ │ │ │ │ ├── cryptoutils.go │ │ │ │ │ │ └── cryptoutils_test.go │ │ │ │ │ ├── defbackend.go │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── endpoint.go │ │ │ │ │ │ └── endpoint_test.go │ │ │ │ │ ├── lookup │ │ │ │ │ │ ├── lookup.go │ │ │ │ │ │ └── lookup_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── config_test.yaml │ │ │ │ │ │ ├── config_test_embedded_pems.yaml │ │ │ │ │ │ ├── config_test_entity_matchers.yaml │ │ │ │ │ │ ├── config_test_pem.yaml │ │ │ │ │ │ ├── template │ │ │ │ │ │ └── config.yaml │ │ │ │ │ │ └── viper-test.yaml │ │ │ │ ├── cryptosuite │ │ │ │ │ ├── bccsp │ │ │ │ │ │ ├── multisuite │ │ │ │ │ │ │ ├── cryptosuiteimpl.go │ │ │ │ │ │ │ └── cryptosuiteimpl_test.go │ │ │ │ │ │ ├── pkcs11 │ │ │ │ │ │ │ ├── cryptosuiteimpl.go │ │ │ │ │ │ │ └── cryptosuiteimpl_test.go │ │ │ │ │ │ ├── sw │ │ │ │ │ │ │ ├── cryptosuiteimpl.go │ │ │ │ │ │ │ └── cryptosuiteimpl_test.go │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ ├── cryptosuiteimpl.go │ │ │ │ │ │ │ ├── cryptosuiteimpl_test.go │ │ │ │ │ │ │ └── mocksuite_test.go │ │ │ │ │ ├── cryptoconfig.go │ │ │ │ │ ├── cryptoconfig_test.go │ │ │ │ │ ├── cryptosuite.go │ │ │ │ │ ├── cryptosuite_test.go │ │ │ │ │ ├── opts.go │ │ │ │ │ └── opts_test.go │ │ │ │ ├── logging │ │ │ │ │ ├── api │ │ │ │ │ │ └── logger.go │ │ │ │ │ ├── metadata │ │ │ │ │ │ ├── callerInfo.go │ │ │ │ │ │ ├── callerInfo_test.go │ │ │ │ │ │ ├── level.go │ │ │ │ │ │ ├── level_test.go │ │ │ │ │ │ └── utils.go │ │ │ │ │ ├── modlog │ │ │ │ │ │ ├── modlog.go │ │ │ │ │ │ ├── modlog_test.go │ │ │ │ │ │ └── testVerifyUtils.go │ │ │ │ │ └── testdata │ │ │ │ │ │ └── sampleloggingprovider.go │ │ │ │ └── mocks │ │ │ │ │ ├── mockconfigbackend.go │ │ │ │ │ ├── mockcorecontext.go │ │ │ │ │ └── mocksigningmgr.go │ │ │ ├── fab │ │ │ │ ├── api.go │ │ │ │ ├── ccpackager │ │ │ │ │ └── gopackager │ │ │ │ │ │ ├── packager.go │ │ │ │ │ │ └── packager_test.go │ │ │ │ ├── channel │ │ │ │ │ ├── cscc.go │ │ │ │ │ ├── ledger.go │ │ │ │ │ ├── ledger_test.go │ │ │ │ │ ├── membership │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ ├── cache_test.go │ │ │ │ │ │ ├── membership.go │ │ │ │ │ │ ├── membership_test.go │ │ │ │ │ │ └── reference.go │ │ │ │ │ ├── qscc.go │ │ │ │ │ ├── responsevalidator.go │ │ │ │ │ ├── transactor.go │ │ │ │ │ └── transactor_test.go │ │ │ │ ├── chconfig │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── cache_test.go │ │ │ │ │ ├── chconfig.go │ │ │ │ │ ├── chconfig_test.go │ │ │ │ │ └── reference.go │ │ │ │ ├── comm │ │ │ │ │ ├── comm_test.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── connection_test.go │ │ │ │ │ ├── connectionopts.go │ │ │ │ │ ├── connector.go │ │ │ │ │ ├── connector_test.go │ │ │ │ │ ├── mocks.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── network_test.go │ │ │ │ │ ├── streamconnection.go │ │ │ │ │ └── streamconnection_test.go │ │ │ │ ├── discovery │ │ │ │ │ ├── discovery.go │ │ │ │ │ ├── discovery_test.go │ │ │ │ │ └── mocks │ │ │ │ │ │ └── mockdiscoveryserver.go │ │ │ │ ├── endpointconfig.go │ │ │ │ ├── endpointconfig_test.go │ │ │ │ ├── events │ │ │ │ │ ├── api │ │ │ │ │ │ ├── connection.go │ │ │ │ │ │ └── endpoint.go │ │ │ │ │ ├── client │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── client_test.go │ │ │ │ │ │ ├── dispatcher │ │ │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ │ │ ├── dispatcher_test.go │ │ │ │ │ │ │ ├── events.go │ │ │ │ │ │ │ ├── opts.go │ │ │ │ │ │ │ └── registrations.go │ │ │ │ │ │ ├── lbp │ │ │ │ │ │ │ ├── lbp.go │ │ │ │ │ │ │ ├── lbp_test.go │ │ │ │ │ │ │ ├── random.go │ │ │ │ │ │ │ └── roundrobin.go │ │ │ │ │ │ ├── mocks │ │ │ │ │ │ │ ├── mockconnection.go │ │ │ │ │ │ │ ├── mockdiscovery.go │ │ │ │ │ │ │ └── numevents.go │ │ │ │ │ │ └── opts.go │ │ │ │ │ ├── deliverclient │ │ │ │ │ │ ├── connection │ │ │ │ │ │ │ ├── connection.go │ │ │ │ │ │ │ └── connection_test.go │ │ │ │ │ │ ├── deliverclient.go │ │ │ │ │ │ ├── deliverclient_test.go │ │ │ │ │ │ ├── dispatcher │ │ │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ │ │ ├── dispatcher_test.go │ │ │ │ │ │ │ └── events.go │ │ │ │ │ │ ├── mocks │ │ │ │ │ │ │ ├── mockconnection.go │ │ │ │ │ │ │ └── mockevents.go │ │ │ │ │ │ ├── opts.go │ │ │ │ │ │ └── seek │ │ │ │ │ │ │ └── seek.go │ │ │ │ │ ├── endpoint │ │ │ │ │ │ ├── endpoint.go │ │ │ │ │ │ ├── endpoint_test.go │ │ │ │ │ │ └── endpointdiscovery.go │ │ │ │ │ ├── eventhubclient │ │ │ │ │ │ ├── connection │ │ │ │ │ │ │ ├── connection.go │ │ │ │ │ │ │ └── connection_test.go │ │ │ │ │ │ ├── dispatcher │ │ │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ │ │ ├── dispatcher_test.go │ │ │ │ │ │ │ └── events.go │ │ │ │ │ │ ├── eventhubclient.go │ │ │ │ │ │ ├── eventhubclient_test.go │ │ │ │ │ │ ├── mocks │ │ │ │ │ │ │ ├── mockconnection.go │ │ │ │ │ │ │ └── mockevents.go │ │ │ │ │ │ └── opts.go │ │ │ │ │ ├── mocks │ │ │ │ │ │ ├── mockdelserver.go │ │ │ │ │ │ └── mockehserver.go │ │ │ │ │ └── service │ │ │ │ │ │ ├── blockfilter │ │ │ │ │ │ ├── acceptanyfilter.go │ │ │ │ │ │ └── headertypefilter │ │ │ │ │ │ │ ├── headertypefilter.go │ │ │ │ │ │ │ └── headertypefilter_test.go │ │ │ │ │ │ ├── dispatcher │ │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ │ ├── dispatcher_test.go │ │ │ │ │ │ ├── events.go │ │ │ │ │ │ ├── opts.go │ │ │ │ │ │ └── registrations.go │ │ │ │ │ │ ├── mocks │ │ │ │ │ │ ├── blockproducer.go │ │ │ │ │ │ ├── blockwrapper.go │ │ │ │ │ │ ├── fblockwrapper.go │ │ │ │ │ │ ├── mockevents.go │ │ │ │ │ │ ├── mockledger.go │ │ │ │ │ │ └── mockproducer.go │ │ │ │ │ │ ├── opts.go │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ └── service_test.go │ │ │ │ ├── keyvaluestore │ │ │ │ │ ├── filekeyvaluestore.go │ │ │ │ │ └── filekeyvaluestore_test.go │ │ │ │ ├── mocks │ │ │ │ │ ├── mockbroadcastserver.go │ │ │ │ │ ├── mockcaclient.go │ │ │ │ │ ├── mockchannel.go │ │ │ │ │ ├── mockchconfig.go │ │ │ │ │ ├── mockchprovider.go │ │ │ │ │ ├── mockconfig.go │ │ │ │ │ ├── mockcontext.go │ │ │ │ │ ├── mockcryptosuite.go │ │ │ │ │ ├── mockdata.go │ │ │ │ │ ├── mockdiscovery.go │ │ │ │ │ ├── mockendorserserver.go │ │ │ │ │ ├── mockeventserver.go │ │ │ │ │ ├── mockeventservice.go │ │ │ │ │ ├── mockfabricprovider.go │ │ │ │ │ ├── mockidentity.go │ │ │ │ │ ├── mockidentitymgr.go │ │ │ │ │ ├── mocklocal.go │ │ │ │ │ ├── mockmembership.go │ │ │ │ │ ├── mockmsp.go │ │ │ │ │ ├── mockmspmanager.go │ │ │ │ │ ├── mockorderer.go │ │ │ │ │ ├── mockpeer.go │ │ │ │ │ ├── mockselection.go │ │ │ │ │ └── mocktransactor.go │ │ │ │ ├── opts.go │ │ │ │ ├── opts_test.go │ │ │ │ ├── orderer │ │ │ │ │ ├── orderer.go │ │ │ │ │ └── orderer_test.go │ │ │ │ ├── peer │ │ │ │ │ ├── peer.go │ │ │ │ │ ├── peer_test.go │ │ │ │ │ ├── peerendorser.go │ │ │ │ │ └── peerendorser_test.go │ │ │ │ ├── resource │ │ │ │ │ ├── api.go │ │ │ │ │ ├── block.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_test.go │ │ │ │ │ ├── cscc.go │ │ │ │ │ ├── lscc.go │ │ │ │ │ ├── lscc_test.go │ │ │ │ │ ├── resource.go │ │ │ │ │ └── resource_test.go │ │ │ │ ├── signingmgr │ │ │ │ │ ├── signingmgr.go │ │ │ │ │ └── signingmgr_test.go │ │ │ │ └── txn │ │ │ │ │ ├── env.go │ │ │ │ │ ├── proposal.go │ │ │ │ │ ├── proposal_test.go │ │ │ │ │ ├── txn.go │ │ │ │ │ └── txn_test.go │ │ │ ├── fabsdk │ │ │ │ ├── api │ │ │ │ │ └── factory.go │ │ │ │ ├── context.go │ │ │ │ ├── context_test.go │ │ │ │ ├── defpkgsuite.go │ │ │ │ ├── defpkgsuite_test.go │ │ │ │ ├── fabsdk.go │ │ │ │ ├── fabsdk_chconfig_test.go │ │ │ │ ├── fabsdk_test.go │ │ │ │ ├── factory.go │ │ │ │ ├── factory │ │ │ │ │ ├── defcore │ │ │ │ │ │ ├── corefactory.go │ │ │ │ │ │ └── corefactory_test.go │ │ │ │ │ ├── defmsp │ │ │ │ │ │ ├── mspfactory.go │ │ │ │ │ │ └── mspfactory_test.go │ │ │ │ │ └── defsvc │ │ │ │ │ │ ├── svcfactory.go │ │ │ │ │ │ └── svcfactory_test.go │ │ │ │ ├── mocks_test.go │ │ │ │ ├── provider │ │ │ │ │ ├── chpvdr │ │ │ │ │ │ ├── cachekey.go │ │ │ │ │ │ ├── chprovider.go │ │ │ │ │ │ ├── chprovider_test.go │ │ │ │ │ │ ├── eventserviceref.go │ │ │ │ │ │ └── fabprovider_testing_env.go │ │ │ │ │ ├── fabpvdr │ │ │ │ │ │ ├── fabpvdr.go │ │ │ │ │ │ └── fabpvdr_test.go │ │ │ │ │ └── msppvdr │ │ │ │ │ │ ├── msppvdr.go │ │ │ │ │ │ └── msppvdr_test.go │ │ │ │ ├── singleton_test.go │ │ │ │ └── test │ │ │ │ │ └── mocksdkapi │ │ │ │ │ └── mocksdkapi.gen.go │ │ │ ├── msp │ │ │ │ ├── api │ │ │ │ │ └── api.go │ │ │ │ ├── caclient.go │ │ │ │ ├── caclient_test.go │ │ │ │ ├── certfileuserstore.go │ │ │ │ ├── certfileuserstore_test.go │ │ │ │ ├── enrollment_test.go │ │ │ │ ├── fabcaadapter.go │ │ │ │ ├── filecertstore.go │ │ │ │ ├── filekeystore.go │ │ │ │ ├── getsigid.go │ │ │ │ ├── getsigid_test.go │ │ │ │ ├── identityconfig.go │ │ │ │ ├── identityconfig_test.go │ │ │ │ ├── identitymgr.go │ │ │ │ ├── identitymgr_test.go │ │ │ │ ├── main_test.go │ │ │ │ ├── memory_key_store.go │ │ │ │ ├── memory_user_store.go │ │ │ │ ├── opts.go │ │ │ │ ├── opts_test.go │ │ │ │ ├── test │ │ │ │ │ ├── mockmsp │ │ │ │ │ │ ├── mockfabriccaserver.go │ │ │ │ │ │ ├── mockkey.go │ │ │ │ │ │ ├── mockuser.go │ │ │ │ │ │ └── mockuserstore.go │ │ │ │ │ └── mockmspapi │ │ │ │ │ │ └── mockmspapi.gen.go │ │ │ │ ├── testdata │ │ │ │ │ └── root.pem │ │ │ │ ├── user.go │ │ │ │ └── user_test.go │ │ │ └── util │ │ │ │ ├── concurrent │ │ │ │ ├── futurevalue │ │ │ │ │ ├── futurevalue.go │ │ │ │ │ └── futurevalue_test.go │ │ │ │ ├── lazycache │ │ │ │ │ ├── keys.go │ │ │ │ │ ├── lazycache.go │ │ │ │ │ └── lazycache_test.go │ │ │ │ └── lazyref │ │ │ │ │ ├── expiration.go │ │ │ │ │ ├── lazyref.go │ │ │ │ │ ├── lazyref_test.go │ │ │ │ │ └── options.go │ │ │ │ ├── pathvar │ │ │ │ ├── subst.go │ │ │ │ └── subst_test.go │ │ │ │ └── test │ │ │ │ └── test.go │ │ │ ├── scripts │ │ │ ├── _go │ │ │ │ └── src │ │ │ │ │ ├── gofilter │ │ │ │ │ └── cmd │ │ │ │ │ │ └── gofilter │ │ │ │ │ │ └── gofilter.go │ │ │ │ │ └── pkcs11helper │ │ │ │ │ ├── Gopkg.lock │ │ │ │ │ ├── Gopkg.toml │ │ │ │ │ ├── cmd │ │ │ │ │ └── pkcs11helper │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ └── testdata │ │ │ │ │ │ └── key.ec.pem │ │ │ │ │ └── pkg │ │ │ │ │ └── pkcs11wrapper │ │ │ │ │ ├── ecdsa.go │ │ │ │ │ └── pkcs11.go │ │ │ ├── changelog.sh │ │ │ └── third_party_pins │ │ │ │ ├── common │ │ │ │ ├── apply_header_notice.sh │ │ │ │ ├── apply_import_patching.sh │ │ │ │ └── insert_header_notice.sh │ │ │ │ ├── fabric-ca │ │ │ │ ├── apply_fabric_ca_client_utils.sh │ │ │ │ ├── apply_upstream.sh │ │ │ │ └── patches │ │ │ │ │ ├── 0001-logbridge.patch │ │ │ │ │ ├── 0002-Decouple-server-structs-needed-for-client-compilatio.patch │ │ │ │ │ └── 0003-cryptosuite.patch │ │ │ │ └── fabric │ │ │ │ ├── apply_fabric_client_utils.sh │ │ │ │ ├── apply_fabric_external_utils.sh │ │ │ │ ├── apply_fabric_protos.sh │ │ │ │ ├── apply_fabric_protos_internal.sh │ │ │ │ ├── apply_upstream.sh │ │ │ │ └── patches │ │ │ │ ├── 0001-logbridge.patch │ │ │ │ ├── 0002-Remove-idemix-MSP.patch │ │ │ │ └── 0003-cryptosuite.patch │ │ │ ├── test │ │ │ ├── fixtures │ │ │ │ ├── config │ │ │ │ │ ├── config_pkcs11_test.yaml │ │ │ │ │ ├── config_test.yaml │ │ │ │ │ ├── config_test_crypto_bccsp.yaml │ │ │ │ │ ├── config_test_endpoints.yaml │ │ │ │ │ ├── config_test_multiorg_bootstrap.yaml │ │ │ │ │ ├── config_test_no_orderer.yaml │ │ │ │ │ ├── mutual_tls │ │ │ │ │ │ ├── client_sdk_go-key.pem │ │ │ │ │ │ └── client_sdk_go.pem │ │ │ │ │ └── overrides │ │ │ │ │ │ ├── local_entity_matchers.yaml │ │ │ │ │ │ ├── local_orderers_peers.yaml │ │ │ │ │ │ └── local_orderers_peers_ca.yaml │ │ │ │ ├── dockerenv │ │ │ │ │ ├── .env │ │ │ │ │ ├── devstable-env.sh │ │ │ │ │ ├── docker-compose-expired-orderer.yaml │ │ │ │ │ ├── docker-compose-expired-peer.yaml │ │ │ │ │ ├── docker-compose-nopkcs11-test.yaml │ │ │ │ │ ├── docker-compose-pkcs11-test.yaml │ │ │ │ │ ├── docker-compose-revoked.yaml │ │ │ │ │ ├── docker-compose.yaml │ │ │ │ │ ├── latest-env.sh │ │ │ │ │ ├── nomutualtls-env.sh │ │ │ │ │ ├── prerelease-env.sh │ │ │ │ │ └── prev-env.sh │ │ │ │ ├── fabric │ │ │ │ │ ├── v1.0 │ │ │ │ │ │ ├── channel │ │ │ │ │ │ │ ├── mychannel.tx │ │ │ │ │ │ │ ├── mychannelOrg1MSPanchors.tx │ │ │ │ │ │ │ ├── mychannelOrg2MSPanchors.tx │ │ │ │ │ │ │ ├── orgchannel.tx │ │ │ │ │ │ │ ├── orgchannelOrg1MSPanchors.tx │ │ │ │ │ │ │ ├── orgchannelOrg2MSPanchors.tx │ │ │ │ │ │ │ ├── testchannel.tx │ │ │ │ │ │ │ ├── testchannelOrg1MSPanchors.tx │ │ │ │ │ │ │ ├── testchannelOrg2MSPanchors.tx │ │ │ │ │ │ │ └── twoorgs.genesis.block │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── configtx.yaml │ │ │ │ │ ├── v1.1 │ │ │ │ │ │ ├── channel │ │ │ │ │ │ │ ├── mychannel.tx │ │ │ │ │ │ │ ├── mychannelOrg1MSPanchors.tx │ │ │ │ │ │ │ ├── mychannelOrg2MSPanchors.tx │ │ │ │ │ │ │ ├── orgchannel.tx │ │ │ │ │ │ │ ├── orgchannelOrg1MSPanchors.tx │ │ │ │ │ │ │ ├── orgchannelOrg2MSPanchors.tx │ │ │ │ │ │ │ ├── testchannel.tx │ │ │ │ │ │ │ ├── testchannelOrg1MSPanchors.tx │ │ │ │ │ │ │ ├── testchannelOrg2MSPanchors.tx │ │ │ │ │ │ │ └── twoorgs.genesis.block │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── configtx.yaml │ │ │ │ │ ├── v1.2 │ │ │ │ │ │ ├── channel │ │ │ │ │ │ │ ├── mychannel.tx │ │ │ │ │ │ │ ├── mychannelOrg1MSPanchors.tx │ │ │ │ │ │ │ ├── mychannelOrg2MSPanchors.tx │ │ │ │ │ │ │ ├── orgchannel.tx │ │ │ │ │ │ │ ├── orgchannelOrg1MSPanchors.tx │ │ │ │ │ │ │ ├── orgchannelOrg2MSPanchors.tx │ │ │ │ │ │ │ ├── testchannel.tx │ │ │ │ │ │ │ ├── testchannelOrg1MSPanchors.tx │ │ │ │ │ │ │ ├── testchannelOrg2MSPanchors.tx │ │ │ │ │ │ │ └── twoorgs.genesis.block │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── configtx.yaml │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── crypto-config │ │ │ │ │ │ ├── ordererOrganizations │ │ │ │ │ │ │ └── example.com │ │ │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ │ ├── 92b8e7cabc157123e30894b4ffd3fa3e94cb499bda7b58f79e57d5f8942161e4_sk │ │ │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ │ │ │ ├── expiredtlsca │ │ │ │ │ │ │ │ └── expired.pem │ │ │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ │ │ │ │ ├── orderers │ │ │ │ │ │ │ │ └── orderer.example.com │ │ │ │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ │ │ │ └── 07bf421d4f12606226f23b274167a956e4421ade2f8bb94e5bf265e71fd39e55_sk │ │ │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ │ │ └── orderer.example.com-cert.pem │ │ │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ │ │ └── server.key │ │ │ │ │ │ │ │ ├── tlsca │ │ │ │ │ │ │ │ ├── 716843f79d51d0c78afbb42f963bffefacf44cd6df3a48a374b3a5c1f0b59b1d_sk │ │ │ │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ │ │ │ │ └── users │ │ │ │ │ │ │ │ └── Admin@example.com │ │ │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ │ │ └── f4aa194b12d13d7c2b7b275a7115af5e6f728e11710716f2c754df4587891511_sk │ │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ │ └── server.key │ │ │ │ │ │ └── peerOrganizations │ │ │ │ │ │ │ ├── org1.example.com │ │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ │ ├── 8791d1363e89515f9afa042b0693a2c704bb8dd95d28f97d3549a2b9e3c4352d_sk │ │ │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ │ │ ├── expiredtlsca │ │ │ │ │ │ │ │ └── expired.pem │ │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ │ │ │ ├── crls │ │ │ │ │ │ │ │ │ └── crl.pem │ │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ │ │ │ ├── peers │ │ │ │ │ │ │ │ ├── peer0.org1.example.com │ │ │ │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ │ │ │ │ └── a23272f898441edb0f415f028b3b3b42627d75e150dfbae23543234751814983_sk │ │ │ │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ │ │ │ └── peer0.org1.example.com-cert.pem │ │ │ │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ │ │ │ └── server.key │ │ │ │ │ │ │ │ └── peer1.org1.example.com │ │ │ │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ │ │ │ └── 322d7177700f59edfa128a42b437bc26f79f49523f59c54b6ebc5aa9ea2e2926_sk │ │ │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ │ │ └── peer1.org1.example.com-cert.pem │ │ │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ │ │ └── server.key │ │ │ │ │ │ │ ├── tlsca │ │ │ │ │ │ │ │ ├── 3f6a273ef185992857ce363958f1098610c028cf218fb97bd39147ef29c55cdc_sk │ │ │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ │ │ │ └── users │ │ │ │ │ │ │ │ ├── Admin@org1.example.com │ │ │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ │ │ │ └── ce142124e13093a3e13bc4708b0f2b26e1d4d2ea4d4cc59942790bfc0f3bcc6d_sk │ │ │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ │ │ └── server.key │ │ │ │ │ │ │ │ └── User1@org1.example.com │ │ │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ │ └── User1@org1.example.com-cert.pem │ │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ │ │ └── abbe8ee0f86c227b1917d208921497603d2ff28f4ba8e902d703744c4a6fa7b7_sk │ │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ │ └── User1@org1.example.com-cert.pem │ │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ │ └── server.key │ │ │ │ │ │ │ └── org2.example.com │ │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ ├── a259204dbd6adb14c05a6e02de94567b2a9f7dbe9e6a063ba767d42bf0b544c1_sk │ │ │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ │ │ │ ├── crls │ │ │ │ │ │ │ │ └── crl.pem │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ │ │ │ │ ├── peers │ │ │ │ │ │ │ ├── peer0.org2.example.com │ │ │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ │ │ │ │ │ ├── crls │ │ │ │ │ │ │ │ │ │ └── crl.pem │ │ │ │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ │ │ │ └── 116d4be58ca68fb788fdddc4e10384812e09263654666ff0bdccc31deb7a8265_sk │ │ │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ │ │ └── peer0.org2.example.com-cert.pem │ │ │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ │ │ └── server.key │ │ │ │ │ │ │ └── peer1.org2.example.com │ │ │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ │ │ ├── 51696d1d551fe3a8a08d809b0b71c6dae0056ec02b466e3fed62801d6854a047_sk │ │ │ │ │ │ │ │ │ └── e92288f967b17b068c0b8853417e917902bc8a52aa2aac6a1b123504eae691cf_sk │ │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ │ └── peer1.org2.example.com-cert.pem │ │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ │ └── server.key │ │ │ │ │ │ │ ├── tlsca │ │ │ │ │ │ │ ├── 401cd9e9f5a5a9ad66b535639b9b7241d708ac8ab3a519c80910919050c806ec_sk │ │ │ │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ │ │ │ │ └── users │ │ │ │ │ │ │ ├── Admin@org2.example.com │ │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ │ │ └── 371ea01078b18f3b92c1fc8233dfa8d209d882ae40aeff4defd118ba9d572a15_sk │ │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ │ └── server.key │ │ │ │ │ │ │ └── User1@org2.example.com │ │ │ │ │ │ │ ├── msp │ │ │ │ │ │ │ ├── admincerts │ │ │ │ │ │ │ │ └── User1@org2.example.com-cert.pem │ │ │ │ │ │ │ ├── cacerts │ │ │ │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ │ │ └── 7777a174c9fe40ab5abe33199a4fe82f1e0a7c45715e395e73a78cc3480d0021_sk │ │ │ │ │ │ │ ├── signcerts │ │ │ │ │ │ │ │ └── User1@org2.example.com-cert.pem │ │ │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ ├── ca.crt │ │ │ │ │ │ │ ├── server.crt │ │ │ │ │ │ │ └── server.key │ │ │ │ │ │ └── mutual_tls │ │ │ │ │ │ └── client_sdk_go-ca_root.pem │ │ │ │ ├── fabricca │ │ │ │ │ └── tls │ │ │ │ │ │ ├── ca │ │ │ │ │ │ ├── ca_root-key.pem │ │ │ │ │ │ └── ca_root.pem │ │ │ │ │ │ └── certs │ │ │ │ │ │ ├── ca_root.pem │ │ │ │ │ │ ├── client │ │ │ │ │ │ ├── client_client1-key.pem │ │ │ │ │ │ ├── client_client1.pem │ │ │ │ │ │ ├── client_fabric_client-key.pem │ │ │ │ │ │ └── client_fabric_client.pem │ │ │ │ │ │ └── server │ │ │ │ │ │ ├── org1.example.com-cert.pem │ │ │ │ │ │ ├── org2.example.com-cert.pem │ │ │ │ │ │ ├── server_wild_org1or2.example.com-key.pem │ │ │ │ │ │ └── server_wild_org1or2.example.com.pem │ │ │ │ ├── softhsm2 │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── install-softhsm2.sh │ │ │ │ └── testdata │ │ │ │ │ └── src │ │ │ │ │ └── github.com │ │ │ │ │ ├── events_cc │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── sample-json │ │ │ │ │ │ │ └── event.json │ │ │ │ │ └── events_cc.go │ │ │ │ │ ├── example_cc │ │ │ │ │ └── example_cc.go │ │ │ │ │ └── example_cc1 │ │ │ │ │ ├── META-INF-foo │ │ │ │ │ └── example1-foo.json │ │ │ │ │ ├── META-INF │ │ │ │ │ └── example1.json │ │ │ │ │ ├── example_cc1.go │ │ │ │ │ └── foo-META-INF │ │ │ │ │ └── foo-example.json │ │ │ ├── integration │ │ │ │ ├── base_test_setup.go │ │ │ │ ├── e2e │ │ │ │ │ ├── configless │ │ │ │ │ │ ├── cryptoconfig_override_test.go │ │ │ │ │ │ ├── end_to_end_test.go │ │ │ │ │ │ ├── endpointconfig_override_test.go │ │ │ │ │ │ └── identityconfig_override_test.go │ │ │ │ │ ├── end_to_end.go │ │ │ │ │ ├── end_to_end_test.go │ │ │ │ │ └── no_orderer_config_test.go │ │ │ │ ├── env.go │ │ │ │ ├── expiredorderer │ │ │ │ │ └── expired_certificate_test.go │ │ │ │ ├── expiredpeer │ │ │ │ │ └── expired_certificate_test.go │ │ │ │ ├── fab │ │ │ │ │ ├── channel_ledger_test.go │ │ │ │ │ ├── discoveryclient_test.go │ │ │ │ │ ├── eventclient_test.go │ │ │ │ │ ├── install_chaincode_test.go │ │ │ │ │ ├── main_test.go │ │ │ │ │ ├── resource_queries_test.go │ │ │ │ │ └── transient_data_test.go │ │ │ │ ├── msp │ │ │ │ │ ├── check_cert_attributes.go │ │ │ │ │ ├── check_cert_ser_attributes_prev.go │ │ │ │ │ ├── custom_core_factory.go │ │ │ │ │ ├── custom_msp_factory.go │ │ │ │ │ ├── enrollment_test.go │ │ │ │ │ ├── identity_test.go │ │ │ │ │ └── user_data_mgmt_test.go │ │ │ │ ├── orgs │ │ │ │ │ ├── multiple_orgs_minconfig_test.go │ │ │ │ │ └── multiple_orgs_test.go │ │ │ │ ├── pkcs11 │ │ │ │ │ ├── e2e_test.go │ │ │ │ │ └── env.go │ │ │ │ ├── revoked │ │ │ │ │ └── revoked_peer_test.go │ │ │ │ ├── sdk │ │ │ │ │ ├── channel_client_test.go │ │ │ │ │ ├── channel_config_test.go │ │ │ │ │ ├── custom_cryptosuite_test.go │ │ │ │ │ ├── events_client_test.go │ │ │ │ │ ├── fabricselection_test.go │ │ │ │ │ ├── ledger_queries_test.go │ │ │ │ │ ├── main_test.go │ │ │ │ │ ├── resmgmt_queries_test.go │ │ │ │ │ ├── sdk_dyndiscovery_test.go │ │ │ │ │ ├── sdk_parent_context_test.go │ │ │ │ │ └── sdk_provider_test.go │ │ │ │ └── utils.go │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ └── scripts │ │ │ │ ├── check_license.sh │ │ │ │ ├── check_lint.sh │ │ │ │ ├── check_status.sh │ │ │ │ ├── clean_integration.sh │ │ │ │ ├── dependencies.sh │ │ │ │ ├── expiredorderer.sh │ │ │ │ ├── expiredpeer.sh │ │ │ │ ├── fabric_test_commitlevel.sh │ │ │ │ ├── generate_channeltx.sh │ │ │ │ ├── integration.sh │ │ │ │ ├── revoked.sh │ │ │ │ ├── unit-pkcs11.sh │ │ │ │ └── unit.sh │ │ │ └── third_party │ │ │ └── github.com │ │ │ └── hyperledger │ │ │ └── fabric │ │ │ ├── common │ │ │ └── cauthdsl │ │ │ │ ├── cauthdsl_builder.go │ │ │ │ └── policyparser.go │ │ │ ├── core │ │ │ ├── common │ │ │ │ └── ccprovider │ │ │ │ │ ├── ccprovider.go │ │ │ │ │ └── cdspackage.go │ │ │ └── ledger │ │ │ │ ├── kvledger │ │ │ │ └── txmgmt │ │ │ │ │ └── rwsetutil │ │ │ │ │ └── rwset_proto_util.go │ │ │ │ └── util │ │ │ │ └── txvalidationflags.go │ │ │ └── protos │ │ │ ├── common │ │ │ ├── collection.pb.go │ │ │ ├── common.pb.go │ │ │ ├── configtx.pb.go │ │ │ ├── configuration.pb.go │ │ │ ├── ledger.pb.go │ │ │ └── policies.pb.go │ │ │ ├── ledger │ │ │ └── rwset │ │ │ │ ├── kvrwset │ │ │ │ └── kv_rwset.pb.go │ │ │ │ └── rwset.pb.go │ │ │ ├── msp │ │ │ ├── identities.pb.go │ │ │ ├── msp_config.pb.go │ │ │ └── msp_principal.pb.go │ │ │ ├── orderer │ │ │ └── configuration.pb.go │ │ │ ├── peer │ │ │ ├── chaincode.pb.go │ │ │ ├── chaincode_event.pb.go │ │ │ ├── configuration.pb.go │ │ │ ├── events.pb.go │ │ │ ├── peer.pb.go │ │ │ ├── proposal.pb.go │ │ │ ├── proposal_response.pb.go │ │ │ ├── query.pb.go │ │ │ ├── signed_cc_dep_spec.pb.go │ │ │ └── transaction.pb.go │ │ │ └── utils │ │ │ ├── commonutils.go │ │ │ ├── proputils.go │ │ │ └── txutils.go │ ├── magiconair │ │ └── properties │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assert │ │ │ ├── assert.go │ │ │ └── assert_test.go │ │ │ ├── benchmark_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── integrate.go │ │ │ ├── integrate_test.go │ │ │ ├── lex.go │ │ │ ├── load.go │ │ │ ├── load_test.go │ │ │ ├── parser.go │ │ │ ├── properties.go │ │ │ ├── properties_test.go │ │ │ └── rangecheck.go │ ├── mitchellh │ │ └── mapstructure │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode_hooks.go │ │ │ ├── decode_hooks_test.go │ │ │ ├── error.go │ │ │ ├── go.mod │ │ │ ├── mapstructure.go │ │ │ ├── mapstructure_benchmark_test.go │ │ │ ├── mapstructure_bugs_test.go │ │ │ ├── mapstructure_examples_test.go │ │ │ └── mapstructure_test.go │ ├── pelletier │ │ └── go-toml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── benchmark.json │ │ │ ├── benchmark.sh │ │ │ ├── benchmark.toml │ │ │ ├── benchmark.yml │ │ │ ├── benchmark_test.go │ │ │ ├── cmd │ │ │ ├── test_program.go │ │ │ ├── tomljson │ │ │ │ ├── main.go │ │ │ │ └── main_test.go │ │ │ └── tomll │ │ │ │ └── main.go │ │ │ ├── doc.go │ │ │ ├── doc_test.go │ │ │ ├── example-crlf.toml │ │ │ ├── example.toml │ │ │ ├── fuzz.go │ │ │ ├── fuzz.sh │ │ │ ├── keysparsing.go │ │ │ ├── keysparsing_test.go │ │ │ ├── lexer.go │ │ │ ├── lexer_test.go │ │ │ ├── marshal.go │ │ │ ├── marshal_test.go │ │ │ ├── marshal_test.toml │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ ├── position.go │ │ │ ├── position_test.go │ │ │ ├── query │ │ │ ├── doc.go │ │ │ ├── lexer.go │ │ │ ├── lexer_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ ├── query.go │ │ │ ├── query_test.go │ │ │ └── tokens.go │ │ │ ├── test.sh │ │ │ ├── token.go │ │ │ ├── token_test.go │ │ │ ├── toml.go │ │ │ ├── toml_test.go │ │ │ ├── tomltree_create.go │ │ │ ├── tomltree_create_test.go │ │ │ ├── tomltree_write.go │ │ │ └── tomltree_write_test.go │ ├── pkg │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── bench_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── example_test.go │ │ │ ├── format_test.go │ │ │ ├── stack.go │ │ │ └── stack_test.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── difflib │ │ │ ├── difflib.go │ │ │ └── difflib_test.go │ ├── spf13 │ │ ├── afero │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── afero.go │ │ │ ├── afero_test.go │ │ │ ├── appveyor.yml │ │ │ ├── basepath.go │ │ │ ├── basepath_test.go │ │ │ ├── cacheOnReadFs.go │ │ │ ├── composite_test.go │ │ │ ├── const_bsds.go │ │ │ ├── const_win_unix.go │ │ │ ├── copyOnWriteFs.go │ │ │ ├── copyOnWriteFs_test.go │ │ │ ├── go.mod │ │ │ ├── httpFs.go │ │ │ ├── ioutil.go │ │ │ ├── ioutil_test.go │ │ │ ├── lstater.go │ │ │ ├── lstater_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── mem │ │ │ │ ├── dir.go │ │ │ │ ├── dirmap.go │ │ │ │ ├── file.go │ │ │ │ └── file_test.go │ │ │ ├── memmap.go │ │ │ ├── memmap_test.go │ │ │ ├── os.go │ │ │ ├── path.go │ │ │ ├── path_test.go │ │ │ ├── readonlyfs.go │ │ │ ├── regexpfs.go │ │ │ ├── ro_regexp_test.go │ │ │ ├── sftpfs │ │ │ │ ├── file.go │ │ │ │ ├── sftp.go │ │ │ │ └── sftp_test_go │ │ │ ├── unionFile.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── cast │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── cast.go │ │ │ ├── cast_test.go │ │ │ └── caste.go │ │ ├── jwalterweatherman │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── default_notepad.go │ │ │ ├── default_notepad_test.go │ │ │ ├── go.mod │ │ │ ├── log_counter.go │ │ │ ├── notepad.go │ │ │ └── notepad_test.go │ │ ├── pflag │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_slice.go │ │ │ ├── bool_slice_test.go │ │ │ ├── bool_test.go │ │ │ ├── bytes.go │ │ │ ├── bytes_test.go │ │ │ ├── count.go │ │ │ ├── count_test.go │ │ │ ├── duration.go │ │ │ ├── duration_slice.go │ │ │ ├── duration_slice_test.go │ │ │ ├── example_test.go │ │ │ ├── export_test.go │ │ │ ├── flag.go │ │ │ ├── flag_test.go │ │ │ ├── float32.go │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── golangflag_test.go │ │ │ ├── int.go │ │ │ ├── int16.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── int_slice_test.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ip_slice_test.go │ │ │ ├── ip_test.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── ipnet_test.go │ │ │ ├── printusage_test.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_array_test.go │ │ │ ├── string_slice.go │ │ │ ├── string_slice_test.go │ │ │ ├── string_to_int.go │ │ │ ├── string_to_int_test.go │ │ │ ├── string_to_string.go │ │ │ ├── string_to_string_test.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ ├── uint_slice.go │ │ │ ├── uint_slice_test.go │ │ │ └── verify │ │ │ │ ├── all.sh │ │ │ │ ├── gofmt.sh │ │ │ │ └── golint.sh │ │ └── viper │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── flags.go │ │ │ ├── flags_test.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── overrides_test.go │ │ │ ├── remote │ │ │ └── remote.go │ │ │ ├── util.go │ │ │ ├── util_test.go │ │ │ ├── viper.go │ │ │ └── viper_test.go │ └── stretchr │ │ └── testify │ │ ├── .gitignore │ │ ├── .travis.gofmt.sh │ │ ├── .travis.gogenerate.sh │ │ ├── .travis.govet.sh │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _codegen │ │ └── main.go │ │ ├── assert │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertions.go │ │ ├── assertions_test.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ ├── forward_assertions_test.go │ │ ├── http_assertions.go │ │ └── http_assertions_test.go │ │ ├── doc.go │ │ ├── http │ │ ├── doc.go │ │ ├── test_response_writer.go │ │ └── test_round_tripper.go │ │ ├── mock │ │ ├── doc.go │ │ ├── mock.go │ │ └── mock_test.go │ │ ├── package_test.go │ │ ├── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── forward_requirements_test.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ ├── requirements.go │ │ └── requirements_test.go │ │ └── suite │ │ ├── doc.go │ │ ├── interfaces.go │ │ ├── suite.go │ │ └── suite_test.go ├── golang.org │ └── x │ │ ├── crypto │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── acme │ │ │ ├── acme.go │ │ │ ├── acme_test.go │ │ │ ├── autocert │ │ │ │ ├── autocert.go │ │ │ │ ├── autocert_test.go │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── internal │ │ │ │ │ └── acmetest │ │ │ │ │ │ └── ca.go │ │ │ │ ├── listener.go │ │ │ │ ├── renewal.go │ │ │ │ └── renewal_test.go │ │ │ ├── http.go │ │ │ ├── http_test.go │ │ │ ├── jws.go │ │ │ ├── jws_test.go │ │ │ ├── types.go │ │ │ └── types_test.go │ │ ├── argon2 │ │ │ ├── argon2.go │ │ │ ├── argon2_test.go │ │ │ ├── blake2b.go │ │ │ ├── blamka_amd64.go │ │ │ ├── blamka_amd64.s │ │ │ ├── blamka_generic.go │ │ │ └── blamka_ref.go │ │ ├── bcrypt │ │ │ ├── base64.go │ │ │ ├── bcrypt.go │ │ │ └── bcrypt_test.go │ │ ├── blake2b │ │ │ ├── blake2b.go │ │ │ ├── blake2bAVX2_amd64.go │ │ │ ├── blake2bAVX2_amd64.s │ │ │ ├── blake2b_amd64.go │ │ │ ├── blake2b_amd64.s │ │ │ ├── blake2b_generic.go │ │ │ ├── blake2b_ref.go │ │ │ ├── blake2b_test.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── blake2s │ │ │ ├── blake2s.go │ │ │ ├── blake2s_386.go │ │ │ ├── blake2s_386.s │ │ │ ├── blake2s_amd64.go │ │ │ ├── blake2s_amd64.s │ │ │ ├── blake2s_generic.go │ │ │ ├── blake2s_ref.go │ │ │ ├── blake2s_test.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── blowfish_test.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── bn256 │ │ │ ├── bn256.go │ │ │ ├── bn256_test.go │ │ │ ├── constants.go │ │ │ ├── curve.go │ │ │ ├── example_test.go │ │ │ ├── gfp12.go │ │ │ ├── gfp2.go │ │ │ ├── gfp6.go │ │ │ ├── optate.go │ │ │ └── twist.go │ │ ├── cast5 │ │ │ ├── cast5.go │ │ │ └── cast5_test.go │ │ ├── chacha20poly1305 │ │ │ ├── chacha20poly1305.go │ │ │ ├── chacha20poly1305_amd64.go │ │ │ ├── chacha20poly1305_amd64.s │ │ │ ├── chacha20poly1305_generic.go │ │ │ ├── chacha20poly1305_noasm.go │ │ │ ├── chacha20poly1305_test.go │ │ │ ├── chacha20poly1305_vectors_test.go │ │ │ └── xchacha20poly1305.go │ │ ├── codereview.cfg │ │ ├── cryptobyte │ │ │ ├── asn1.go │ │ │ ├── asn1 │ │ │ │ └── asn1.go │ │ │ ├── asn1_test.go │ │ │ ├── builder.go │ │ │ ├── cryptobyte_test.go │ │ │ ├── example_test.go │ │ │ └── string.go │ │ ├── curve25519 │ │ │ ├── const_amd64.h │ │ │ ├── const_amd64.s │ │ │ ├── cswap_amd64.s │ │ │ ├── curve25519.go │ │ │ ├── curve25519_test.go │ │ │ ├── doc.go │ │ │ ├── freeze_amd64.s │ │ │ ├── ladderstep_amd64.s │ │ │ ├── mont25519_amd64.go │ │ │ ├── mul_amd64.s │ │ │ └── square_amd64.s │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ ├── ed25519_test.go │ │ │ ├── internal │ │ │ │ └── edwards25519 │ │ │ │ │ ├── const.go │ │ │ │ │ └── edwards25519.go │ │ │ └── testdata │ │ │ │ └── sign.input.gz │ │ ├── hkdf │ │ │ ├── example_test.go │ │ │ ├── hkdf.go │ │ │ └── hkdf_test.go │ │ ├── internal │ │ │ ├── chacha20 │ │ │ │ ├── chacha_generic.go │ │ │ │ ├── chacha_noasm.go │ │ │ │ ├── chacha_s390x.go │ │ │ │ ├── chacha_s390x.s │ │ │ │ ├── chacha_test.go │ │ │ │ ├── vectors_test.go │ │ │ │ └── xor.go │ │ │ └── subtle │ │ │ │ ├── aliasing.go │ │ │ │ ├── aliasing_appengine.go │ │ │ │ └── aliasing_test.go │ │ ├── md4 │ │ │ ├── example_test.go │ │ │ ├── md4.go │ │ │ ├── md4_test.go │ │ │ └── md4block.go │ │ ├── nacl │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── auth_test.go │ │ │ │ └── example_test.go │ │ │ ├── box │ │ │ │ ├── box.go │ │ │ │ ├── box_test.go │ │ │ │ └── example_test.go │ │ │ ├── secretbox │ │ │ │ ├── example_test.go │ │ │ │ ├── secretbox.go │ │ │ │ └── secretbox_test.go │ │ │ └── sign │ │ │ │ ├── sign.go │ │ │ │ └── sign_test.go │ │ ├── ocsp │ │ │ ├── ocsp.go │ │ │ └── ocsp_test.go │ │ ├── openpgp │ │ │ ├── armor │ │ │ │ ├── armor.go │ │ │ │ ├── armor_test.go │ │ │ │ └── encode.go │ │ │ ├── canonical_text.go │ │ │ ├── canonical_text_test.go │ │ │ ├── clearsign │ │ │ │ ├── clearsign.go │ │ │ │ └── clearsign_test.go │ │ │ ├── elgamal │ │ │ │ ├── elgamal.go │ │ │ │ └── elgamal_test.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── keys.go │ │ │ ├── keys_data_test.go │ │ │ ├── keys_test.go │ │ │ ├── packet │ │ │ │ ├── compressed.go │ │ │ │ ├── compressed_test.go │ │ │ │ ├── config.go │ │ │ │ ├── encrypted_key.go │ │ │ │ ├── encrypted_key_test.go │ │ │ │ ├── literal.go │ │ │ │ ├── ocfb.go │ │ │ │ ├── ocfb_test.go │ │ │ │ ├── one_pass_signature.go │ │ │ │ ├── opaque.go │ │ │ │ ├── opaque_test.go │ │ │ │ ├── packet.go │ │ │ │ ├── packet_test.go │ │ │ │ ├── private_key.go │ │ │ │ ├── private_key_test.go │ │ │ │ ├── public_key.go │ │ │ │ ├── public_key_test.go │ │ │ │ ├── public_key_v3.go │ │ │ │ ├── public_key_v3_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── signature.go │ │ │ │ ├── signature_test.go │ │ │ │ ├── signature_v3.go │ │ │ │ ├── signature_v3_test.go │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ ├── symmetric_key_encrypted_test.go │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ ├── symmetrically_encrypted_test.go │ │ │ │ ├── userattribute.go │ │ │ │ ├── userattribute_test.go │ │ │ │ ├── userid.go │ │ │ │ └── userid_test.go │ │ │ ├── read.go │ │ │ ├── read_test.go │ │ │ ├── s2k │ │ │ │ ├── s2k.go │ │ │ │ └── s2k_test.go │ │ │ ├── write.go │ │ │ └── write_test.go │ │ ├── otr │ │ │ ├── libotr_test_helper.c │ │ │ ├── otr.go │ │ │ ├── otr_test.go │ │ │ └── smp.go │ │ ├── pbkdf2 │ │ │ ├── pbkdf2.go │ │ │ └── pbkdf2_test.go │ │ ├── pkcs12 │ │ │ ├── bmp-string.go │ │ │ ├── bmp-string_test.go │ │ │ ├── crypto.go │ │ │ ├── crypto_test.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ │ └── rc2 │ │ │ │ │ ├── bench_test.go │ │ │ │ │ ├── rc2.go │ │ │ │ │ └── rc2_test.go │ │ │ ├── mac.go │ │ │ ├── mac_test.go │ │ │ ├── pbkdf.go │ │ │ ├── pbkdf_test.go │ │ │ ├── pkcs12.go │ │ │ ├── pkcs12_test.go │ │ │ └── safebags.go │ │ ├── poly1305 │ │ │ ├── poly1305.go │ │ │ ├── poly1305_test.go │ │ │ ├── sum_amd64.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_arm.go │ │ │ ├── sum_arm.s │ │ │ ├── sum_noasm.go │ │ │ ├── sum_ref.go │ │ │ ├── sum_s390x.go │ │ │ ├── sum_s390x.s │ │ │ ├── sum_vmsl_s390x.s │ │ │ └── vectors_test.go │ │ ├── ripemd160 │ │ │ ├── ripemd160.go │ │ │ ├── ripemd160_test.go │ │ │ └── ripemd160block.go │ │ ├── salsa20 │ │ │ ├── salsa │ │ │ │ ├── hsalsa20.go │ │ │ │ ├── salsa2020_amd64.s │ │ │ │ ├── salsa208.go │ │ │ │ ├── salsa20_amd64.go │ │ │ │ ├── salsa20_ref.go │ │ │ │ └── salsa_test.go │ │ │ ├── salsa20.go │ │ │ └── salsa20_test.go │ │ ├── scrypt │ │ │ ├── example_test.go │ │ │ ├── scrypt.go │ │ │ └── scrypt_test.go │ │ ├── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── hashes_generic.go │ │ │ ├── keccakf.go │ │ │ ├── keccakf_amd64.go │ │ │ ├── keccakf_amd64.s │ │ │ ├── register.go │ │ │ ├── sha3.go │ │ │ ├── sha3_s390x.go │ │ │ ├── sha3_s390x.s │ │ │ ├── sha3_test.go │ │ │ ├── shake.go │ │ │ ├── shake_generic.go │ │ │ ├── testdata │ │ │ │ └── keccakKats.json.deflate │ │ │ ├── xor.go │ │ │ ├── xor_generic.go │ │ │ └── xor_unaligned.go │ │ ├── ssh │ │ │ ├── agent │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── forward.go │ │ │ │ ├── keyring.go │ │ │ │ ├── keyring_test.go │ │ │ │ ├── server.go │ │ │ │ ├── server_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── benchmark_test.go │ │ │ ├── buffer.go │ │ │ ├── buffer_test.go │ │ │ ├── certs.go │ │ │ ├── certs_test.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── cipher_test.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── client_auth_test.go │ │ │ ├── client_test.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── handshake.go │ │ │ ├── handshake_test.go │ │ │ ├── kex.go │ │ │ ├── kex_test.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── knownhosts │ │ │ │ ├── knownhosts.go │ │ │ │ └── knownhosts_test.go │ │ │ ├── mac.go │ │ │ ├── mempipe_test.go │ │ │ ├── messages.go │ │ │ ├── messages_test.go │ │ │ ├── mux.go │ │ │ ├── mux_test.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── session_test.go │ │ │ ├── streamlocal.go │ │ │ ├── tcpip.go │ │ │ ├── tcpip_test.go │ │ │ ├── terminal │ │ │ │ ├── terminal.go │ │ │ │ ├── terminal_test.go │ │ │ │ ├── util.go │ │ │ │ ├── util_bsd.go │ │ │ │ ├── util_linux.go │ │ │ │ ├── util_plan9.go │ │ │ │ ├── util_solaris.go │ │ │ │ └── util_windows.go │ │ │ ├── test │ │ │ │ ├── agent_unix_test.go │ │ │ │ ├── banner_test.go │ │ │ │ ├── cert_test.go │ │ │ │ ├── dial_unix_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── forward_unix_test.go │ │ │ │ ├── multi_auth_test.go │ │ │ │ ├── session_test.go │ │ │ │ ├── sshd_test_pw.c │ │ │ │ ├── test_unix_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── testdata │ │ │ │ ├── doc.go │ │ │ │ └── keys.go │ │ │ ├── testdata_test.go │ │ │ ├── transport.go │ │ │ └── transport_test.go │ │ ├── tea │ │ │ ├── cipher.go │ │ │ └── tea_test.go │ │ ├── twofish │ │ │ ├── twofish.go │ │ │ └── twofish_test.go │ │ ├── xtea │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── xtea_test.go │ │ └── xts │ │ │ ├── xts.go │ │ │ └── xts_test.go │ │ ├── net │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── instructions_test.go │ │ │ ├── setter.go │ │ │ ├── testdata │ │ │ │ ├── all_instructions.bpf │ │ │ │ └── all_instructions.txt │ │ │ ├── vm.go │ │ │ ├── vm_aluop_test.go │ │ │ ├── vm_bpf_test.go │ │ │ ├── vm_extension_test.go │ │ │ ├── vm_instructions.go │ │ │ ├── vm_jump_test.go │ │ │ ├── vm_load_test.go │ │ │ ├── vm_ret_test.go │ │ │ ├── vm_scratch_test.go │ │ │ └── vm_test.go │ │ ├── codereview.cfg │ │ ├── context │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── ctxhttp │ │ │ │ ├── ctxhttp.go │ │ │ │ ├── ctxhttp_17_test.go │ │ │ │ ├── ctxhttp_pre17.go │ │ │ │ ├── ctxhttp_pre17_test.go │ │ │ │ └── ctxhttp_test.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ ├── pre_go19.go │ │ │ └── withtimeout_test.go │ │ ├── dict │ │ │ └── dict.go │ │ ├── dns │ │ │ └── dnsmessage │ │ │ │ ├── example_test.go │ │ │ │ ├── message.go │ │ │ │ └── message_test.go │ │ ├── html │ │ │ ├── atom │ │ │ │ ├── atom.go │ │ │ │ ├── atom_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── table.go │ │ │ │ └── table_test.go │ │ │ ├── charset │ │ │ │ ├── charset.go │ │ │ │ ├── charset_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── HTTP-charset.html │ │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ │ ├── README │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ │ └── meta-content-attribute.html │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── entity_test.go │ │ │ ├── escape.go │ │ │ ├── escape_test.go │ │ │ ├── example_test.go │ │ │ ├── foreign.go │ │ │ ├── node.go │ │ │ ├── node_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── render.go │ │ │ ├── render_test.go │ │ │ ├── testdata │ │ │ │ ├── go │ │ │ │ │ └── template.dat │ │ │ │ ├── go1.html │ │ │ │ └── webkit │ │ │ │ │ ├── README │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ ├── comments01.dat │ │ │ │ │ ├── doctype01.dat │ │ │ │ │ ├── entities01.dat │ │ │ │ │ ├── entities02.dat │ │ │ │ │ ├── html5test-com.dat │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ ├── isindex.dat │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ │ ├── ruby.dat │ │ │ │ │ ├── scriptdata01.dat │ │ │ │ │ ├── scripted │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ └── webkit01.dat │ │ │ │ │ ├── tables01.dat │ │ │ │ │ ├── template.dat │ │ │ │ │ ├── tests1.dat │ │ │ │ │ ├── tests10.dat │ │ │ │ │ ├── tests11.dat │ │ │ │ │ ├── tests12.dat │ │ │ │ │ ├── tests14.dat │ │ │ │ │ ├── tests15.dat │ │ │ │ │ ├── tests16.dat │ │ │ │ │ ├── tests17.dat │ │ │ │ │ ├── tests18.dat │ │ │ │ │ ├── tests19.dat │ │ │ │ │ ├── tests2.dat │ │ │ │ │ ├── tests20.dat │ │ │ │ │ ├── tests21.dat │ │ │ │ │ ├── tests22.dat │ │ │ │ │ ├── tests23.dat │ │ │ │ │ ├── tests24.dat │ │ │ │ │ ├── tests25.dat │ │ │ │ │ ├── tests26.dat │ │ │ │ │ ├── tests3.dat │ │ │ │ │ ├── tests4.dat │ │ │ │ │ ├── tests5.dat │ │ │ │ │ ├── tests6.dat │ │ │ │ │ ├── tests7.dat │ │ │ │ │ ├── tests8.dat │ │ │ │ │ ├── tests9.dat │ │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ │ ├── tricky01.dat │ │ │ │ │ ├── webkit01.dat │ │ │ │ │ └── webkit02.dat │ │ │ ├── token.go │ │ │ └── token_test.go │ │ ├── http │ │ │ ├── httpguts │ │ │ │ ├── guts.go │ │ │ │ ├── httplex.go │ │ │ │ └── httplex_test.go │ │ │ └── httpproxy │ │ │ │ ├── export_test.go │ │ │ │ ├── go19_test.go │ │ │ │ ├── proxy.go │ │ │ │ └── proxy_test.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── ciphers_test.go │ │ │ ├── client_conn_pool.go │ │ │ ├── configure_transport.go │ │ │ ├── databuffer.go │ │ │ ├── databuffer_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── flow.go │ │ │ ├── flow_test.go │ │ │ ├── frame.go │ │ │ ├── frame_test.go │ │ │ ├── go111.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go17_not18.go │ │ │ ├── go18.go │ │ │ ├── go18_test.go │ │ │ ├── go19.go │ │ │ ├── go19_test.go │ │ │ ├── gotrack.go │ │ │ ├── gotrack_test.go │ │ │ ├── h2c │ │ │ │ ├── h2c.go │ │ │ │ └── h2c_test.go │ │ │ ├── h2demo │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Dockerfile.0 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── deployment-prod.yaml │ │ │ │ ├── h2demo.go │ │ │ │ ├── launch.go │ │ │ │ ├── rootCA.key │ │ │ │ ├── rootCA.pem │ │ │ │ ├── rootCA.srl │ │ │ │ ├── server.crt │ │ │ │ ├── server.key │ │ │ │ ├── service.yaml │ │ │ │ └── tmpl.go │ │ │ ├── h2i │ │ │ │ ├── README.md │ │ │ │ └── h2i.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── hpack.go │ │ │ │ ├── hpack_test.go │ │ │ │ ├── huffman.go │ │ │ │ ├── tables.go │ │ │ │ └── tables_test.go │ │ │ ├── http2.go │ │ │ ├── http2_test.go │ │ │ ├── not_go111.go │ │ │ ├── not_go16.go │ │ │ ├── not_go17.go │ │ │ ├── not_go18.go │ │ │ ├── not_go19.go │ │ │ ├── pipe.go │ │ │ ├── pipe_test.go │ │ │ ├── server.go │ │ │ ├── server_push_test.go │ │ │ ├── server_test.go │ │ │ ├── testdata │ │ │ │ └── draft-ietf-httpbis-http2.xml │ │ │ ├── transport.go │ │ │ ├── transport_test.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ ├── writesched_priority_test.go │ │ │ ├── writesched_random.go │ │ │ ├── writesched_random_test.go │ │ │ ├── writesched_test.go │ │ │ └── z_spec_test.go │ │ ├── icmp │ │ │ ├── diag_test.go │ │ │ ├── dstunreach.go │ │ │ ├── echo.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── extension.go │ │ │ ├── extension_test.go │ │ │ ├── helper_posix.go │ │ │ ├── interface.go │ │ │ ├── ipv4.go │ │ │ ├── ipv4_test.go │ │ │ ├── ipv6.go │ │ │ ├── listen_posix.go │ │ │ ├── listen_stub.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── messagebody.go │ │ │ ├── mpls.go │ │ │ ├── multipart.go │ │ │ ├── multipart_test.go │ │ │ ├── packettoobig.go │ │ │ ├── paramprob.go │ │ │ ├── sys_freebsd.go │ │ │ └── timeexceeded.go │ │ ├── idna │ │ │ ├── example_test.go │ │ │ ├── idna.go │ │ │ ├── idna_test.go │ │ │ ├── punycode.go │ │ │ ├── punycode_test.go │ │ │ ├── tables.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ ├── const.go │ │ │ │ └── gen.go │ │ │ ├── nettest │ │ │ │ ├── helper_bsd.go │ │ │ │ ├── helper_nobsd.go │ │ │ │ ├── helper_posix.go │ │ │ │ ├── helper_stub.go │ │ │ │ ├── helper_unix.go │ │ │ │ ├── helper_windows.go │ │ │ │ ├── interface.go │ │ │ │ ├── rlimit.go │ │ │ │ └── stack.go │ │ │ ├── socket │ │ │ │ ├── cmsghdr.go │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_linux.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── error_unix.go │ │ │ │ ├── error_windows.go │ │ │ │ ├── iovec_32bit.go │ │ │ │ ├── iovec_64bit.go │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ ├── iovec_stub.go │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ ├── msghdr_bsd.go │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ ├── msghdr_linux.go │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ ├── msghdr_stub.go │ │ │ │ ├── rawconn.go │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ ├── rawconn_msg.go │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ ├── rawconn_stub.go │ │ │ │ ├── reflect.go │ │ │ │ ├── socket.go │ │ │ │ ├── socket_go1_9_test.go │ │ │ │ ├── socket_test.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_linux_386.go │ │ │ │ ├── sys_linux_386.s │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ ├── sys_linux_arm.go │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ ├── sys_linux_mips.go │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ ├── sys_netbsd.go │ │ │ │ ├── sys_posix.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_unix.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ ├── zsys_darwin_arm.go │ │ │ │ ├── zsys_darwin_arm64.go │ │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ └── zsys_solaris_amd64.go │ │ │ ├── socks │ │ │ │ ├── client.go │ │ │ │ ├── dial_test.go │ │ │ │ └── socks.go │ │ │ ├── sockstest │ │ │ │ ├── server.go │ │ │ │ └── server_test.go │ │ │ └── timeseries │ │ │ │ ├── timeseries.go │ │ │ │ └── timeseries_test.go │ │ ├── ipv4 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_bsd.go │ │ │ ├── control_pktinfo.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── packet.go │ │ │ ├── packet_go1_8.go │ │ │ ├── packet_go1_9.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_asmreqn.go │ │ │ ├── sys_asmreqn_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── ipv6 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_rfc2292_unix.go │ │ │ ├── control_rfc3542_unix.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── icmp_windows.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sockopt_test.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── lif │ │ │ ├── address.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_solaris.go │ │ │ ├── lif.go │ │ │ ├── link.go │ │ │ ├── link_test.go │ │ │ ├── sys.go │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── syscall.go │ │ │ └── zsys_solaris_amd64.go │ │ ├── nettest │ │ │ ├── conntest.go │ │ │ ├── conntest_go16.go │ │ │ ├── conntest_go17.go │ │ │ └── conntest_test.go │ │ ├── netutil │ │ │ ├── listen.go │ │ │ └── listen_test.go │ │ ├── proxy │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── per_host_test.go │ │ │ ├── proxy.go │ │ │ ├── proxy_test.go │ │ │ └── socks5.go │ │ ├── publicsuffix │ │ │ ├── gen.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── route │ │ │ ├── address.go │ │ │ ├── address_darwin_test.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── interface.go │ │ │ ├── interface_announce.go │ │ │ ├── interface_classic.go │ │ │ ├── interface_freebsd.go │ │ │ ├── interface_multicast.go │ │ │ ├── interface_openbsd.go │ │ │ ├── message.go │ │ │ ├── message_darwin_test.go │ │ │ ├── message_freebsd_test.go │ │ │ ├── message_test.go │ │ │ ├── route.go │ │ │ ├── route_classic.go │ │ │ ├── route_openbsd.go │ │ │ ├── route_test.go │ │ │ ├── sys.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_openbsd.go │ │ │ ├── syscall.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_netbsd.go │ │ │ └── zsys_openbsd.go │ │ ├── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ ├── histogram_test.go │ │ │ ├── trace.go │ │ │ ├── trace_go16.go │ │ │ ├── trace_go17.go │ │ │ └── trace_test.go │ │ ├── webdav │ │ │ ├── file.go │ │ │ ├── file_go1.6.go │ │ │ ├── file_go1.7.go │ │ │ ├── file_test.go │ │ │ ├── if.go │ │ │ ├── if_test.go │ │ │ ├── internal │ │ │ │ └── xml │ │ │ │ │ ├── README │ │ │ │ │ ├── atom_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── marshal.go │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── read_test.go │ │ │ │ │ ├── typeinfo.go │ │ │ │ │ ├── xml.go │ │ │ │ │ └── xml_test.go │ │ │ ├── litmus_test_server.go │ │ │ ├── lock.go │ │ │ ├── lock_test.go │ │ │ ├── prop.go │ │ │ ├── prop_test.go │ │ │ ├── webdav.go │ │ │ ├── webdav_test.go │ │ │ ├── xml.go │ │ │ └── xml_test.go │ │ ├── websocket │ │ │ ├── client.go │ │ │ ├── dial.go │ │ │ ├── dial_test.go │ │ │ ├── exampledial_test.go │ │ │ ├── examplehandler_test.go │ │ │ ├── hybi.go │ │ │ ├── hybi_test.go │ │ │ ├── server.go │ │ │ ├── websocket.go │ │ │ └── websocket_test.go │ │ └── xsrftoken │ │ │ ├── xsrf.go │ │ │ └── xsrf_test.go │ │ ├── sys │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── codereview.cfg │ │ ├── cpu │ │ │ ├── cpu.go │ │ │ ├── cpu_arm.go │ │ │ ├── cpu_arm64.go │ │ │ ├── cpu_gc_x86.go │ │ │ ├── cpu_gccgo.c │ │ │ ├── cpu_gccgo.go │ │ │ ├── cpu_mips64x.go │ │ │ ├── cpu_mipsx.go │ │ │ ├── cpu_ppc64x.go │ │ │ ├── cpu_s390x.go │ │ │ ├── cpu_test.go │ │ │ ├── cpu_x86.go │ │ │ └── cpu_x86.s │ │ ├── plan9 │ │ │ ├── asm.s │ │ │ ├── asm_plan9_386.s │ │ │ ├── asm_plan9_amd64.s │ │ │ ├── asm_plan9_arm.s │ │ │ ├── const_plan9.go │ │ │ ├── dir_plan9.go │ │ │ ├── env_plan9.go │ │ │ ├── errors_plan9.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mksyscall.pl │ │ │ ├── mksysnum_plan9.sh │ │ │ ├── pwd_go15_plan9.go │ │ │ ├── pwd_plan9.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_plan9.go │ │ │ ├── syscall_test.go │ │ │ ├── zsyscall_plan9_386.go │ │ │ ├── zsyscall_plan9_amd64.go │ │ │ ├── zsyscall_plan9_arm.go │ │ │ └── zsysnum_plan9.go │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_darwin_386.s │ │ │ ├── asm_darwin_amd64.s │ │ │ ├── asm_darwin_arm.s │ │ │ ├── asm_darwin_arm64.s │ │ │ ├── asm_dragonfly_amd64.s │ │ │ ├── asm_freebsd_386.s │ │ │ ├── asm_freebsd_amd64.s │ │ │ ├── asm_freebsd_arm.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_openbsd_arm.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── creds_test.go │ │ │ ├── dev_aix_ppc.go │ │ │ ├── dev_aix_ppc64.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_linux_test.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── example_test.go │ │ │ ├── export_test.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ioctl.go │ │ │ ├── linux │ │ │ │ ├── Dockerfile │ │ │ │ ├── mkall.go │ │ │ │ ├── mksysnum.pl │ │ │ │ └── types.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mkpost.go │ │ │ ├── mksyscall.pl │ │ │ ├── mksyscall_aix_ppc.pl │ │ │ ├── mksyscall_aix_ppc64.pl │ │ │ ├── mksyscall_solaris.pl │ │ │ ├── mksysctl_openbsd.pl │ │ │ ├── mksysnum_darwin.pl │ │ │ ├── mksysnum_dragonfly.pl │ │ │ ├── mksysnum_freebsd.pl │ │ │ ├── mksysnum_netbsd.pl │ │ │ ├── mksysnum_openbsd.pl │ │ │ ├── mmap_unix_test.go │ │ │ ├── openbsd_pledge.go │ │ │ ├── openbsd_test.go │ │ │ ├── pagesize_unix.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_aix_test.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_bsd_test.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_darwin_test.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_test.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_riscv64.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_linux_test.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_netbsd_test.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_openbsd_test.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_solaris_test.go │ │ │ ├── syscall_test.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_test.go │ │ │ ├── timestruct.go │ │ │ ├── timestruct_test.go │ │ │ ├── types_aix.go │ │ │ ├── types_darwin.go │ │ │ ├── types_dragonfly.go │ │ │ ├── types_freebsd.go │ │ │ ├── types_netbsd.go │ │ │ ├── types_openbsd.go │ │ │ ├── types_solaris.go │ │ │ ├── xattr_bsd.go │ │ │ ├── xattr_test.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.go │ │ │ ├── zerrors_darwin_386.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_riscv64.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zptrace386_linux.go │ │ │ ├── zptracearm_linux.go │ │ │ ├── zptracemips_linux.go │ │ │ ├── zptracemipsle_linux.go │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_386.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysnum_darwin_386.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.go │ │ │ ├── ztypes_darwin_386.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_riscv64.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ │ ├── aliases.go │ │ │ ├── asm_windows_386.s │ │ │ ├── asm_windows_amd64.s │ │ │ ├── asm_windows_arm.s │ │ │ ├── dll_windows.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── registry │ │ │ ├── export_test.go │ │ │ ├── key.go │ │ │ ├── mksyscall.go │ │ │ ├── registry_test.go │ │ │ ├── syscall.go │ │ │ ├── value.go │ │ │ └── zsyscall_windows.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── str.go │ │ │ ├── svc │ │ │ ├── debug │ │ │ │ ├── log.go │ │ │ │ └── service.go │ │ │ ├── event.go │ │ │ ├── eventlog │ │ │ │ ├── install.go │ │ │ │ ├── log.go │ │ │ │ └── log_test.go │ │ │ ├── example │ │ │ │ ├── beep.go │ │ │ │ ├── install.go │ │ │ │ ├── main.go │ │ │ │ ├── manage.go │ │ │ │ └── service.go │ │ │ ├── go12.c │ │ │ ├── go12.go │ │ │ ├── go13.go │ │ │ ├── mgr │ │ │ │ ├── config.go │ │ │ │ ├── mgr.go │ │ │ │ ├── mgr_test.go │ │ │ │ ├── recovery.go │ │ │ │ └── service.go │ │ │ ├── security.go │ │ │ ├── service.go │ │ │ ├── svc_test.go │ │ │ ├── sys_386.s │ │ │ ├── sys_amd64.s │ │ │ └── sys_arm.s │ │ │ ├── syscall.go │ │ │ ├── syscall_test.go │ │ │ ├── syscall_windows.go │ │ │ ├── syscall_windows_test.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ ├── types_windows_arm.go │ │ │ └── zsyscall_windows.go │ │ └── text │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── context_test.go │ │ ├── example_test.go │ │ ├── fold.go │ │ ├── fold_test.go │ │ ├── gen.go │ │ ├── gen_trieval.go │ │ ├── icu.go │ │ ├── icu_test.go │ │ ├── info.go │ │ ├── map.go │ │ ├── map_test.go │ │ ├── tables10.0.0.go │ │ ├── tables10.0.0_test.go │ │ ├── tables9.0.0.go │ │ ├── tables9.0.0_test.go │ │ └── trieval.go │ │ ├── cmd │ │ └── gotext │ │ │ ├── common.go │ │ │ ├── doc.go │ │ │ ├── examples │ │ │ ├── extract │ │ │ │ ├── catalog.go │ │ │ │ ├── locales │ │ │ │ │ ├── de │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── en-US │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── extracted.gotext.json │ │ │ │ │ └── zh │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ └── main.go │ │ │ ├── extract_http │ │ │ │ ├── locales │ │ │ │ │ ├── de │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── en-US │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── extracted.gotext.json │ │ │ │ │ └── zh │ │ │ │ │ │ └── out.gotext.json │ │ │ │ ├── main.go │ │ │ │ └── pkg │ │ │ │ │ └── pkg.go │ │ │ └── rewrite │ │ │ │ ├── main.go │ │ │ │ └── printer.go │ │ │ ├── extract.go │ │ │ ├── generate.go │ │ │ ├── main.go │ │ │ └── rewrite.go │ │ ├── codereview.cfg │ │ ├── collate │ │ ├── build │ │ │ ├── builder.go │ │ │ ├── builder_test.go │ │ │ ├── colelem.go │ │ │ ├── colelem_test.go │ │ │ ├── contract.go │ │ │ ├── contract_test.go │ │ │ ├── order.go │ │ │ ├── order_test.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ └── trie_test.go │ │ ├── collate.go │ │ ├── collate_test.go │ │ ├── export_test.go │ │ ├── index.go │ │ ├── maketables.go │ │ ├── option.go │ │ ├── option_test.go │ │ ├── reg_test.go │ │ ├── sort.go │ │ ├── sort_test.go │ │ ├── table_test.go │ │ ├── tables.go │ │ └── tools │ │ │ └── colcmp │ │ │ ├── Makefile │ │ │ ├── chars.go │ │ │ ├── col.go │ │ │ ├── colcmp.go │ │ │ ├── darwin.go │ │ │ ├── gen.go │ │ │ └── icu.go │ │ ├── currency │ │ ├── common.go │ │ ├── currency.go │ │ ├── currency_test.go │ │ ├── example_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── query.go │ │ ├── query_test.go │ │ ├── tables.go │ │ └── tables_test.go │ │ ├── date │ │ ├── data_test.go │ │ ├── gen.go │ │ ├── gen_test.go │ │ └── tables.go │ │ ├── doc.go │ │ ├── encoding │ │ ├── charmap │ │ │ ├── charmap.go │ │ │ ├── charmap_test.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── encoding.go │ │ ├── encoding_test.go │ │ ├── example_test.go │ │ ├── htmlindex │ │ │ ├── gen.go │ │ │ ├── htmlindex.go │ │ │ ├── htmlindex_test.go │ │ │ ├── map.go │ │ │ └── tables.go │ │ ├── ianaindex │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── ianaindex.go │ │ │ ├── ianaindex_test.go │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── enctest │ │ │ │ └── enctest.go │ │ │ ├── identifier │ │ │ │ ├── gen.go │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ ├── japanese │ │ │ ├── all.go │ │ │ ├── all_test.go │ │ │ ├── eucjp.go │ │ │ ├── iso2022jp.go │ │ │ ├── maketables.go │ │ │ ├── shiftjis.go │ │ │ └── tables.go │ │ ├── korean │ │ │ ├── all_test.go │ │ │ ├── euckr.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── simplifiedchinese │ │ │ ├── all.go │ │ │ ├── all_test.go │ │ │ ├── gbk.go │ │ │ ├── hzgb2312.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── testdata │ │ │ ├── candide-gb18030.txt │ │ │ ├── candide-utf-16le.txt │ │ │ ├── candide-utf-32be.txt │ │ │ ├── candide-utf-8.txt │ │ │ ├── candide-windows-1252.txt │ │ │ ├── rashomon-euc-jp.txt │ │ │ ├── rashomon-iso-2022-jp.txt │ │ │ ├── rashomon-shift-jis.txt │ │ │ ├── rashomon-utf-8.txt │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-utf-8.txt │ │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ │ ├── sunzi-bingfa-simplified-utf-8.txt │ │ │ ├── sunzi-bingfa-traditional-big5.txt │ │ │ ├── sunzi-bingfa-traditional-utf-8.txt │ │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ │ └── unsu-joh-eun-nal-utf-8.txt │ │ ├── traditionalchinese │ │ │ ├── all_test.go │ │ │ ├── big5.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ └── unicode │ │ │ ├── override.go │ │ │ ├── unicode.go │ │ │ ├── unicode_test.go │ │ │ └── utf32 │ │ │ ├── utf32.go │ │ │ └── utf32_test.go │ │ ├── feature │ │ └── plural │ │ │ ├── common.go │ │ │ ├── data_test.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── plural.go │ │ │ ├── plural_test.go │ │ │ └── tables.go │ │ ├── gen.go │ │ ├── internal │ │ ├── catmsg │ │ │ ├── catmsg.go │ │ │ ├── catmsg_test.go │ │ │ ├── codec.go │ │ │ ├── varint.go │ │ │ └── varint_test.go │ │ ├── cldrtree │ │ │ ├── cldrtree.go │ │ │ ├── cldrtree_test.go │ │ │ ├── generate.go │ │ │ ├── option.go │ │ │ ├── testdata │ │ │ │ ├── test1 │ │ │ │ │ ├── common │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── root.xml │ │ │ │ │ └── output.go │ │ │ │ └── test2 │ │ │ │ │ ├── common │ │ │ │ │ └── main │ │ │ │ │ │ ├── en.xml │ │ │ │ │ │ ├── en_001.xml │ │ │ │ │ │ ├── en_GB.xml │ │ │ │ │ │ └── root.xml │ │ │ │ │ └── output.go │ │ │ ├── tree.go │ │ │ └── type.go │ │ ├── colltab │ │ │ ├── collate_test.go │ │ │ ├── collelem.go │ │ │ ├── collelem_test.go │ │ │ ├── colltab.go │ │ │ ├── colltab_test.go │ │ │ ├── contract.go │ │ │ ├── contract_test.go │ │ │ ├── iter.go │ │ │ ├── iter_test.go │ │ │ ├── numeric.go │ │ │ ├── numeric_test.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ ├── trie_test.go │ │ │ ├── weighter.go │ │ │ └── weighter_test.go │ │ ├── export │ │ │ ├── README │ │ │ └── idna │ │ │ │ ├── common_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen10.0.0_test.go │ │ │ │ ├── gen9.0.0_test.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── idna10.0.0.go │ │ │ │ ├── idna10.0.0_test.go │ │ │ │ ├── idna9.0.0.go │ │ │ │ ├── idna9.0.0_test.go │ │ │ │ ├── idna_test.go │ │ │ │ ├── punycode.go │ │ │ │ ├── punycode_test.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── trie.go │ │ │ │ └── trieval.go │ │ ├── format │ │ │ ├── format.go │ │ │ ├── parser.go │ │ │ └── parser_test.go │ │ ├── gen.go │ │ ├── gen │ │ │ ├── code.go │ │ │ └── gen.go │ │ ├── gen_test.go │ │ ├── internal.go │ │ ├── internal_test.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── number │ │ │ ├── common.go │ │ │ ├── decimal.go │ │ │ ├── decimal_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── number.go │ │ │ ├── number_test.go │ │ │ ├── pattern.go │ │ │ ├── pattern_test.go │ │ │ ├── roundingmode_string.go │ │ │ ├── tables.go │ │ │ └── tables_test.go │ │ ├── stringset │ │ │ ├── set.go │ │ │ └── set_test.go │ │ ├── tables.go │ │ ├── tag │ │ │ ├── tag.go │ │ │ └── tag_test.go │ │ ├── testtext │ │ │ ├── codesize.go │ │ │ ├── flag.go │ │ │ ├── gc.go │ │ │ ├── gccgo.go │ │ │ ├── go1_6.go │ │ │ ├── go1_7.go │ │ │ └── text.go │ │ ├── triegen │ │ │ ├── compact.go │ │ │ ├── data_test.go │ │ │ ├── example_compact_test.go │ │ │ ├── example_test.go │ │ │ ├── gen_test.go │ │ │ ├── print.go │ │ │ └── triegen.go │ │ ├── ucd │ │ │ ├── example_test.go │ │ │ ├── ucd.go │ │ │ └── ucd_test.go │ │ └── utf8internal │ │ │ └── utf8internal.go │ │ ├── language │ │ ├── Makefile │ │ ├── common.go │ │ ├── coverage.go │ │ ├── coverage_test.go │ │ ├── display │ │ │ ├── dict.go │ │ │ ├── dict_test.go │ │ │ ├── display.go │ │ │ ├── display_test.go │ │ │ ├── examples_test.go │ │ │ ├── lookup.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_index.go │ │ ├── go1_1.go │ │ ├── go1_2.go │ │ ├── httpexample_test.go │ │ ├── index.go │ │ ├── language.go │ │ ├── language_test.go │ │ ├── lookup.go │ │ ├── lookup_test.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── parse.go │ │ ├── parse_test.go │ │ ├── tables.go │ │ ├── tags.go │ │ └── testdata │ │ │ ├── CLDRLocaleMatcherTest.txt │ │ │ └── GoLocaleMatcherTest.txt │ │ ├── message │ │ ├── catalog.go │ │ ├── catalog │ │ │ ├── catalog.go │ │ │ ├── catalog_test.go │ │ │ ├── dict.go │ │ │ ├── go19.go │ │ │ └── gopre19.go │ │ ├── catalog_test.go │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── fmt_test.go │ │ ├── format.go │ │ ├── message.go │ │ ├── message_test.go │ │ ├── pipeline │ │ │ ├── extract.go │ │ │ ├── generate.go │ │ │ ├── message.go │ │ │ ├── pipeline.go │ │ │ └── rewrite.go │ │ └── print.go │ │ ├── number │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── number.go │ │ ├── number_test.go │ │ └── option.go │ │ ├── runes │ │ ├── cond.go │ │ ├── cond_test.go │ │ ├── example_test.go │ │ ├── runes.go │ │ └── runes_test.go │ │ ├── search │ │ ├── index.go │ │ ├── pattern.go │ │ ├── pattern_test.go │ │ ├── search.go │ │ └── tables.go │ │ ├── secure │ │ ├── bidirule │ │ │ ├── bench_test.go │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ ├── bidirule10.0.0_test.go │ │ │ ├── bidirule9.0.0.go │ │ │ ├── bidirule9.0.0_test.go │ │ │ └── bidirule_test.go │ │ ├── doc.go │ │ └── precis │ │ │ ├── benchmark_test.go │ │ │ ├── class.go │ │ │ ├── class_test.go │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── enforce10.0.0_test.go │ │ │ ├── enforce9.0.0_test.go │ │ │ ├── enforce_test.go │ │ │ ├── gen.go │ │ │ ├── gen_trieval.go │ │ │ ├── nickname.go │ │ │ ├── options.go │ │ │ ├── profile.go │ │ │ ├── profile_test.go │ │ │ ├── profiles.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables_test.go │ │ │ ├── transformer.go │ │ │ └── trieval.go │ │ ├── transform │ │ ├── examples_test.go │ │ ├── transform.go │ │ └── transform_test.go │ │ ├── unicode │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── core_test.go │ │ │ ├── gen.go │ │ │ ├── gen_ranges.go │ │ │ ├── gen_trieval.go │ │ │ ├── prop.go │ │ │ ├── ranges_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables_test.go │ │ │ └── trieval.go │ │ ├── cldr │ │ │ ├── base.go │ │ │ ├── cldr.go │ │ │ ├── cldr_test.go │ │ │ ├── collate.go │ │ │ ├── collate_test.go │ │ │ ├── data_test.go │ │ │ ├── decode.go │ │ │ ├── examples_test.go │ │ │ ├── makexml.go │ │ │ ├── resolve.go │ │ │ ├── resolve_test.go │ │ │ ├── slice.go │ │ │ ├── slice_test.go │ │ │ └── xml.go │ │ ├── doc.go │ │ ├── norm │ │ │ ├── composition.go │ │ │ ├── composition_test.go │ │ │ ├── data10.0.0_test.go │ │ │ ├── data9.0.0_test.go │ │ │ ├── example_iter_test.go │ │ │ ├── example_test.go │ │ │ ├── forminfo.go │ │ │ ├── forminfo_test.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── iter_test.go │ │ │ ├── maketables.go │ │ │ ├── normalize.go │ │ │ ├── normalize_test.go │ │ │ ├── readwriter.go │ │ │ ├── readwriter_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── transform_test.go │ │ │ ├── trie.go │ │ │ ├── triegen.go │ │ │ └── ucd_test.go │ │ ├── rangetable │ │ │ ├── gen.go │ │ │ ├── merge.go │ │ │ ├── merge_test.go │ │ │ ├── rangetable.go │ │ │ ├── rangetable_test.go │ │ │ ├── tables10.0.0.go │ │ │ └── tables9.0.0.go │ │ └── runenames │ │ │ ├── bits.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen_bits.go │ │ │ ├── runenames.go │ │ │ ├── runenames_test.go │ │ │ └── tables.go │ │ └── width │ │ ├── common_test.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_trieval.go │ │ ├── kind_string.go │ │ ├── runes_test.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ ├── tables_test.go │ │ ├── transform.go │ │ ├── transform_test.go │ │ ├── trieval.go │ │ └── width.go ├── google.golang.org │ ├── genproto │ │ ├── .github │ │ │ └── CODEOWNERS │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── googleapis │ │ │ ├── api │ │ │ │ ├── annotations │ │ │ │ │ ├── annotations.pb.go │ │ │ │ │ └── http.pb.go │ │ │ │ ├── authorization_config.pb.go │ │ │ │ ├── configchange │ │ │ │ │ └── config_change.pb.go │ │ │ │ ├── distribution │ │ │ │ │ └── distribution.pb.go │ │ │ │ ├── experimental.pb.go │ │ │ │ ├── expr │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── cel_service.pb.go │ │ │ │ │ │ ├── checked.pb.go │ │ │ │ │ │ ├── eval.pb.go │ │ │ │ │ │ ├── explain.pb.go │ │ │ │ │ │ ├── syntax.pb.go │ │ │ │ │ │ └── value.pb.go │ │ │ │ │ ├── v1beta │ │ │ │ │ │ └── value.pb.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── decl.pb.go │ │ │ │ │ │ ├── eval.pb.go │ │ │ │ │ │ ├── expr.pb.go │ │ │ │ │ │ └── source.pb.go │ │ │ │ ├── httpbody │ │ │ │ │ └── httpbody.pb.go │ │ │ │ ├── label │ │ │ │ │ └── label.pb.go │ │ │ │ ├── launch_stage.pb.go │ │ │ │ ├── metric │ │ │ │ │ └── metric.pb.go │ │ │ │ ├── monitoredres │ │ │ │ │ └── monitored_resource.pb.go │ │ │ │ ├── serviceconfig │ │ │ │ │ ├── auth.pb.go │ │ │ │ │ ├── backend.pb.go │ │ │ │ │ ├── billing.pb.go │ │ │ │ │ ├── consumer.pb.go │ │ │ │ │ ├── context.pb.go │ │ │ │ │ ├── control.pb.go │ │ │ │ │ ├── documentation.pb.go │ │ │ │ │ ├── endpoint.pb.go │ │ │ │ │ ├── log.pb.go │ │ │ │ │ ├── logging.pb.go │ │ │ │ │ ├── monitoring.pb.go │ │ │ │ │ ├── quota.pb.go │ │ │ │ │ ├── service.pb.go │ │ │ │ │ ├── source_info.pb.go │ │ │ │ │ ├── system_parameter.pb.go │ │ │ │ │ └── usage.pb.go │ │ │ │ ├── servicecontrol │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── check_error.pb.go │ │ │ │ │ │ ├── distribution.pb.go │ │ │ │ │ │ ├── log_entry.pb.go │ │ │ │ │ │ ├── metric_value.pb.go │ │ │ │ │ │ ├── operation.pb.go │ │ │ │ │ │ ├── quota_controller.pb.go │ │ │ │ │ │ └── service_controller.pb.go │ │ │ │ └── servicemanagement │ │ │ │ │ └── v1 │ │ │ │ │ ├── resources.pb.go │ │ │ │ │ └── servicemanager.pb.go │ │ │ ├── appengine │ │ │ │ ├── legacy │ │ │ │ │ └── audit_data.pb.go │ │ │ │ ├── logging │ │ │ │ │ └── v1 │ │ │ │ │ │ └── request_log.pb.go │ │ │ │ └── v1 │ │ │ │ │ ├── app_yaml.pb.go │ │ │ │ │ ├── appengine.pb.go │ │ │ │ │ ├── application.pb.go │ │ │ │ │ ├── audit_data.pb.go │ │ │ │ │ ├── deploy.pb.go │ │ │ │ │ ├── instance.pb.go │ │ │ │ │ ├── location.pb.go │ │ │ │ │ ├── operation.pb.go │ │ │ │ │ ├── service.pb.go │ │ │ │ │ └── version.pb.go │ │ │ ├── assistant │ │ │ │ └── embedded │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ └── embedded_assistant.pb.go │ │ │ │ │ └── v1alpha2 │ │ │ │ │ └── embedded_assistant.pb.go │ │ │ ├── bigtable │ │ │ │ ├── admin │ │ │ │ │ ├── cluster │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── bigtable_cluster_data.pb.go │ │ │ │ │ │ │ ├── bigtable_cluster_service.pb.go │ │ │ │ │ │ │ └── bigtable_cluster_service_messages.pb.go │ │ │ │ │ ├── table │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── bigtable_table_data.pb.go │ │ │ │ │ │ │ ├── bigtable_table_service.pb.go │ │ │ │ │ │ │ └── bigtable_table_service_messages.pb.go │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── bigtable_instance_admin.pb.go │ │ │ │ │ │ ├── bigtable_table_admin.pb.go │ │ │ │ │ │ ├── common.pb.go │ │ │ │ │ │ ├── instance.pb.go │ │ │ │ │ │ └── table.pb.go │ │ │ │ ├── v1 │ │ │ │ │ ├── bigtable_data.pb.go │ │ │ │ │ ├── bigtable_service.pb.go │ │ │ │ │ └── bigtable_service_messages.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── bigtable.pb.go │ │ │ │ │ └── data.pb.go │ │ │ ├── bytestream │ │ │ │ └── bytestream.pb.go │ │ │ ├── cloud │ │ │ │ ├── asset │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── asset_service.pb.go │ │ │ │ │ │ └── assets.pb.go │ │ │ │ ├── audit │ │ │ │ │ └── audit_log.pb.go │ │ │ │ ├── automl │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── annotation_payload.pb.go │ │ │ │ │ │ ├── classification.pb.go │ │ │ │ │ │ ├── data_items.pb.go │ │ │ │ │ │ ├── dataset.pb.go │ │ │ │ │ │ ├── image.pb.go │ │ │ │ │ │ ├── io.pb.go │ │ │ │ │ │ ├── model.pb.go │ │ │ │ │ │ ├── model_evaluation.pb.go │ │ │ │ │ │ ├── operations.pb.go │ │ │ │ │ │ ├── prediction_service.pb.go │ │ │ │ │ │ ├── service.pb.go │ │ │ │ │ │ ├── text.pb.go │ │ │ │ │ │ └── translation.pb.go │ │ │ │ ├── bigquery │ │ │ │ │ ├── datatransfer │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── datatransfer.pb.go │ │ │ │ │ │ │ └── transfer.pb.go │ │ │ │ │ ├── logging │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── audit_data.pb.go │ │ │ │ │ └── storage │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── avro.pb.go │ │ │ │ │ │ ├── read_options.pb.go │ │ │ │ │ │ ├── storage.pb.go │ │ │ │ │ │ └── table_reference.pb.go │ │ │ │ ├── billing │ │ │ │ │ └── v1 │ │ │ │ │ │ └── cloud_billing.pb.go │ │ │ │ ├── dataproc │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── clusters.pb.go │ │ │ │ │ │ ├── jobs.pb.go │ │ │ │ │ │ └── operations.pb.go │ │ │ │ │ └── v1beta2 │ │ │ │ │ │ ├── clusters.pb.go │ │ │ │ │ │ ├── jobs.pb.go │ │ │ │ │ │ ├── operations.pb.go │ │ │ │ │ │ ├── shared.pb.go │ │ │ │ │ │ └── workflow_templates.pb.go │ │ │ │ ├── dialogflow │ │ │ │ │ ├── v2 │ │ │ │ │ │ ├── agent.pb.go │ │ │ │ │ │ ├── context.pb.go │ │ │ │ │ │ ├── entity_type.pb.go │ │ │ │ │ │ ├── intent.pb.go │ │ │ │ │ │ ├── session.pb.go │ │ │ │ │ │ ├── session_entity_type.pb.go │ │ │ │ │ │ └── webhook.pb.go │ │ │ │ │ └── v2beta1 │ │ │ │ │ │ ├── agent.pb.go │ │ │ │ │ │ ├── audio_config.pb.go │ │ │ │ │ │ ├── context.pb.go │ │ │ │ │ │ ├── document.pb.go │ │ │ │ │ │ ├── entity_type.pb.go │ │ │ │ │ │ ├── intent.pb.go │ │ │ │ │ │ ├── knowledge_base.pb.go │ │ │ │ │ │ ├── session.pb.go │ │ │ │ │ │ ├── session_entity_type.pb.go │ │ │ │ │ │ └── webhook.pb.go │ │ │ │ ├── functions │ │ │ │ │ └── v1beta2 │ │ │ │ │ │ ├── functions.pb.go │ │ │ │ │ │ └── operations.pb.go │ │ │ │ ├── iot │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── device_manager.pb.go │ │ │ │ │ │ └── resources.pb.go │ │ │ │ ├── kms │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── resources.pb.go │ │ │ │ │ │ └── service.pb.go │ │ │ │ ├── language │ │ │ │ │ ├── v1 │ │ │ │ │ │ └── language_service.pb.go │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ └── language_service.pb.go │ │ │ │ │ └── v1beta2 │ │ │ │ │ │ └── language_service.pb.go │ │ │ │ ├── location │ │ │ │ │ └── locations.pb.go │ │ │ │ ├── ml │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── job_service.pb.go │ │ │ │ │ │ ├── model_service.pb.go │ │ │ │ │ │ ├── operation_metadata.pb.go │ │ │ │ │ │ ├── prediction_service.pb.go │ │ │ │ │ │ └── project_service.pb.go │ │ │ │ ├── oslogin │ │ │ │ │ ├── common │ │ │ │ │ │ └── common.pb.go │ │ │ │ │ ├── v1 │ │ │ │ │ │ └── oslogin.pb.go │ │ │ │ │ ├── v1alpha │ │ │ │ │ │ └── oslogin.pb.go │ │ │ │ │ └── v1beta │ │ │ │ │ │ └── oslogin.pb.go │ │ │ │ ├── redis │ │ │ │ │ ├── v1 │ │ │ │ │ │ └── cloud_redis.pb.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ └── cloud_redis.pb.go │ │ │ │ ├── resourcemanager │ │ │ │ │ └── v2 │ │ │ │ │ │ └── folders.pb.go │ │ │ │ ├── runtimeconfig │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── resources.pb.go │ │ │ │ │ │ └── runtimeconfig.pb.go │ │ │ │ ├── speech │ │ │ │ │ ├── v1 │ │ │ │ │ │ └── cloud_speech.pb.go │ │ │ │ │ └── v1p1beta1 │ │ │ │ │ │ └── cloud_speech.pb.go │ │ │ │ ├── support │ │ │ │ │ ├── common │ │ │ │ │ │ └── common.pb.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ └── cloud_support.pb.go │ │ │ │ ├── tasks │ │ │ │ │ ├── v2beta2 │ │ │ │ │ │ ├── cloudtasks.pb.go │ │ │ │ │ │ ├── queue.pb.go │ │ │ │ │ │ ├── target.pb.go │ │ │ │ │ │ └── task.pb.go │ │ │ │ │ └── v2beta3 │ │ │ │ │ │ ├── cloudtasks.pb.go │ │ │ │ │ │ ├── queue.pb.go │ │ │ │ │ │ ├── target.pb.go │ │ │ │ │ │ └── task.pb.go │ │ │ │ ├── texttospeech │ │ │ │ │ ├── v1 │ │ │ │ │ │ └── cloud_tts.pb.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ └── cloud_tts.pb.go │ │ │ │ ├── videointelligence │ │ │ │ │ ├── v1 │ │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ │ ├── v1beta2 │ │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ │ ├── v1p1beta1 │ │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ │ └── v1p2beta1 │ │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ ├── vision │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── geometry.pb.go │ │ │ │ │ │ ├── image_annotator.pb.go │ │ │ │ │ │ ├── text_annotation.pb.go │ │ │ │ │ │ └── web_detection.pb.go │ │ │ │ │ ├── v1p1beta1 │ │ │ │ │ │ ├── geometry.pb.go │ │ │ │ │ │ ├── image_annotator.pb.go │ │ │ │ │ │ ├── text_annotation.pb.go │ │ │ │ │ │ └── web_detection.pb.go │ │ │ │ │ ├── v1p2beta1 │ │ │ │ │ │ ├── geometry.pb.go │ │ │ │ │ │ ├── image_annotator.pb.go │ │ │ │ │ │ ├── text_annotation.pb.go │ │ │ │ │ │ └── web_detection.pb.go │ │ │ │ │ └── v1p3beta1 │ │ │ │ │ │ ├── geometry.pb.go │ │ │ │ │ │ ├── image_annotator.pb.go │ │ │ │ │ │ ├── product_search.pb.go │ │ │ │ │ │ ├── product_search_service.pb.go │ │ │ │ │ │ ├── text_annotation.pb.go │ │ │ │ │ │ └── web_detection.pb.go │ │ │ │ └── websecurityscanner │ │ │ │ │ └── v1alpha │ │ │ │ │ ├── crawled_url.pb.go │ │ │ │ │ ├── finding.pb.go │ │ │ │ │ ├── finding_addon.pb.go │ │ │ │ │ ├── finding_type_stats.pb.go │ │ │ │ │ ├── scan_config.pb.go │ │ │ │ │ ├── scan_run.pb.go │ │ │ │ │ └── web_security_scanner.pb.go │ │ │ ├── container │ │ │ │ ├── v1 │ │ │ │ │ └── cluster_service.pb.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ └── cluster_service.pb.go │ │ │ │ └── v1beta1 │ │ │ │ │ └── cluster_service.pb.go │ │ │ ├── datastore │ │ │ │ ├── admin │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── datastore_admin.pb.go │ │ │ │ │ │ └── index.pb.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ └── datastore_admin.pb.go │ │ │ │ ├── v1 │ │ │ │ │ ├── datastore.pb.go │ │ │ │ │ ├── entity.pb.go │ │ │ │ │ └── query.pb.go │ │ │ │ └── v1beta3 │ │ │ │ │ ├── datastore.pb.go │ │ │ │ │ ├── entity.pb.go │ │ │ │ │ └── query.pb.go │ │ │ ├── devtools │ │ │ │ ├── build │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── build_events.pb.go │ │ │ │ │ │ ├── build_status.pb.go │ │ │ │ │ │ └── publish_build_event.pb.go │ │ │ │ ├── cloudbuild │ │ │ │ │ └── v1 │ │ │ │ │ │ └── cloudbuild.pb.go │ │ │ │ ├── clouddebugger │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── controller.pb.go │ │ │ │ │ │ ├── data.pb.go │ │ │ │ │ │ └── debugger.pb.go │ │ │ │ ├── clouderrorreporting │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── common.pb.go │ │ │ │ │ │ ├── error_group_service.pb.go │ │ │ │ │ │ ├── error_stats_service.pb.go │ │ │ │ │ │ └── report_errors_service.pb.go │ │ │ │ ├── cloudprofiler │ │ │ │ │ └── v2 │ │ │ │ │ │ └── profiler.pb.go │ │ │ │ ├── cloudtrace │ │ │ │ │ ├── v1 │ │ │ │ │ │ └── trace.pb.go │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── trace.pb.go │ │ │ │ │ │ └── tracing.pb.go │ │ │ │ ├── containeranalysis │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── bill_of_materials.pb.go │ │ │ │ │ │ ├── containeranalysis.pb.go │ │ │ │ │ │ ├── image_basis.pb.go │ │ │ │ │ │ ├── package_vulnerability.pb.go │ │ │ │ │ │ ├── provenance.pb.go │ │ │ │ │ │ └── source_context.pb.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── attestation │ │ │ │ │ │ └── attestation.pb.go │ │ │ │ │ │ ├── build │ │ │ │ │ │ └── build.pb.go │ │ │ │ │ │ ├── common │ │ │ │ │ │ └── common.pb.go │ │ │ │ │ │ ├── containeranalysis.pb.go │ │ │ │ │ │ ├── deployment │ │ │ │ │ │ └── deployment.pb.go │ │ │ │ │ │ ├── discovery │ │ │ │ │ │ └── discovery.pb.go │ │ │ │ │ │ ├── grafeas │ │ │ │ │ │ └── grafeas.pb.go │ │ │ │ │ │ ├── image │ │ │ │ │ │ └── image.pb.go │ │ │ │ │ │ ├── package │ │ │ │ │ │ └── package.pb.go │ │ │ │ │ │ ├── provenance │ │ │ │ │ │ └── provenance.pb.go │ │ │ │ │ │ ├── source │ │ │ │ │ │ └── source.pb.go │ │ │ │ │ │ └── vulnerability │ │ │ │ │ │ └── vulnerability.pb.go │ │ │ │ ├── remoteexecution │ │ │ │ │ └── v1test │ │ │ │ │ │ └── remote_execution.pb.go │ │ │ │ ├── remoteworkers │ │ │ │ │ └── v1test2 │ │ │ │ │ │ ├── bots.pb.go │ │ │ │ │ │ ├── command.pb.go │ │ │ │ │ │ ├── tasks.pb.go │ │ │ │ │ │ └── worker.pb.go │ │ │ │ ├── resultstore │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── action.pb.go │ │ │ │ │ │ ├── common.pb.go │ │ │ │ │ │ ├── configuration.pb.go │ │ │ │ │ │ ├── configured_target.pb.go │ │ │ │ │ │ ├── coverage.pb.go │ │ │ │ │ │ ├── coverage_summary.pb.go │ │ │ │ │ │ ├── file.pb.go │ │ │ │ │ │ ├── file_set.pb.go │ │ │ │ │ │ ├── invocation.pb.go │ │ │ │ │ │ ├── resultstore_download.pb.go │ │ │ │ │ │ ├── resultstore_file_download.pb.go │ │ │ │ │ │ ├── resultstore_upload.pb.go │ │ │ │ │ │ ├── target.pb.go │ │ │ │ │ │ └── test_suite.pb.go │ │ │ │ ├── source │ │ │ │ │ └── v1 │ │ │ │ │ │ └── source_context.pb.go │ │ │ │ └── sourcerepo │ │ │ │ │ └── v1 │ │ │ │ │ └── sourcerepo.pb.go │ │ │ ├── example │ │ │ │ └── library │ │ │ │ │ └── v1 │ │ │ │ │ └── library.pb.go │ │ │ ├── firestore │ │ │ │ ├── admin │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ ├── firestore_admin.pb.go │ │ │ │ │ │ └── index.pb.go │ │ │ │ │ └── v1beta2 │ │ │ │ │ │ ├── field.pb.go │ │ │ │ │ │ ├── firestore_admin.pb.go │ │ │ │ │ │ ├── index.pb.go │ │ │ │ │ │ └── operation.pb.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── document.pb.go │ │ │ │ │ ├── firestore.pb.go │ │ │ │ │ ├── query.pb.go │ │ │ │ │ └── write.pb.go │ │ │ ├── genomics │ │ │ │ ├── v1 │ │ │ │ │ ├── annotations.pb.go │ │ │ │ │ ├── cigar.pb.go │ │ │ │ │ ├── datasets.pb.go │ │ │ │ │ ├── operations.pb.go │ │ │ │ │ ├── position.pb.go │ │ │ │ │ ├── range.pb.go │ │ │ │ │ ├── readalignment.pb.go │ │ │ │ │ ├── readgroup.pb.go │ │ │ │ │ ├── readgroupset.pb.go │ │ │ │ │ ├── reads.pb.go │ │ │ │ │ ├── references.pb.go │ │ │ │ │ └── variants.pb.go │ │ │ │ └── v1alpha2 │ │ │ │ │ └── pipelines.pb.go │ │ │ ├── home │ │ │ │ └── graph │ │ │ │ │ └── v1 │ │ │ │ │ ├── device.pb.go │ │ │ │ │ └── homegraph.pb.go │ │ │ ├── iam │ │ │ │ ├── admin │ │ │ │ │ └── v1 │ │ │ │ │ │ └── iam.pb.go │ │ │ │ ├── credentials │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── common.pb.go │ │ │ │ │ │ └── iamcredentials.pb.go │ │ │ │ └── v1 │ │ │ │ │ ├── iam_policy.pb.go │ │ │ │ │ ├── logging │ │ │ │ │ └── audit_data.pb.go │ │ │ │ │ └── policy.pb.go │ │ │ ├── logging │ │ │ │ ├── type │ │ │ │ │ ├── http_request.pb.go │ │ │ │ │ └── log_severity.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── log_entry.pb.go │ │ │ │ │ ├── logging.pb.go │ │ │ │ │ ├── logging_config.pb.go │ │ │ │ │ └── logging_metrics.pb.go │ │ │ ├── longrunning │ │ │ │ └── operations.pb.go │ │ │ ├── monitoring │ │ │ │ └── v3 │ │ │ │ │ ├── alert.pb.go │ │ │ │ │ ├── alert_service.pb.go │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── dropped_labels.pb.go │ │ │ │ │ ├── group.pb.go │ │ │ │ │ ├── group_service.pb.go │ │ │ │ │ ├── metric.pb.go │ │ │ │ │ ├── metric_service.pb.go │ │ │ │ │ ├── mutation_record.pb.go │ │ │ │ │ ├── notification.pb.go │ │ │ │ │ ├── notification_service.pb.go │ │ │ │ │ ├── span_context.pb.go │ │ │ │ │ ├── uptime.pb.go │ │ │ │ │ └── uptime_service.pb.go │ │ │ ├── privacy │ │ │ │ └── dlp │ │ │ │ │ └── v2 │ │ │ │ │ ├── dlp.pb.go │ │ │ │ │ └── storage.pb.go │ │ │ ├── pubsub │ │ │ │ ├── v1 │ │ │ │ │ └── pubsub.pb.go │ │ │ │ └── v1beta2 │ │ │ │ │ └── pubsub.pb.go │ │ │ ├── rpc │ │ │ │ ├── code │ │ │ │ │ └── code.pb.go │ │ │ │ ├── errdetails │ │ │ │ │ └── error_details.pb.go │ │ │ │ └── status │ │ │ │ │ └── status.pb.go │ │ │ ├── spanner │ │ │ │ ├── admin │ │ │ │ │ ├── database │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── spanner_database_admin.pb.go │ │ │ │ │ └── instance │ │ │ │ │ │ └── v1 │ │ │ │ │ │ └── spanner_instance_admin.pb.go │ │ │ │ └── v1 │ │ │ │ │ ├── keys.pb.go │ │ │ │ │ ├── mutation.pb.go │ │ │ │ │ ├── query_plan.pb.go │ │ │ │ │ ├── result_set.pb.go │ │ │ │ │ ├── spanner.pb.go │ │ │ │ │ ├── transaction.pb.go │ │ │ │ │ └── type.pb.go │ │ │ ├── storagetransfer │ │ │ │ └── v1 │ │ │ │ │ ├── transfer.pb.go │ │ │ │ │ └── transfer_types.pb.go │ │ │ ├── streetview │ │ │ │ └── publish │ │ │ │ │ └── v1 │ │ │ │ │ ├── resources.pb.go │ │ │ │ │ ├── rpcmessages.pb.go │ │ │ │ │ └── streetview_publish.pb.go │ │ │ ├── type │ │ │ │ ├── color │ │ │ │ │ └── color.pb.go │ │ │ │ ├── date │ │ │ │ │ └── date.pb.go │ │ │ │ ├── dayofweek │ │ │ │ │ └── dayofweek.pb.go │ │ │ │ ├── latlng │ │ │ │ │ └── latlng.pb.go │ │ │ │ ├── money │ │ │ │ │ └── money.pb.go │ │ │ │ ├── postaladdress │ │ │ │ │ └── postal_address.pb.go │ │ │ │ └── timeofday │ │ │ │ │ └── timeofday.pb.go │ │ │ └── watcher │ │ │ │ └── v1 │ │ │ │ └── watch.pb.go │ │ ├── protobuf │ │ │ ├── api │ │ │ │ └── api.pb.go │ │ │ ├── field_mask │ │ │ │ └── field_mask.pb.go │ │ │ ├── ptype │ │ │ │ └── type.pb.go │ │ │ └── source_context │ │ │ │ └── source_context.pb.go │ │ ├── regen.go │ │ └── regen.sh │ └── grpc │ │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ └── lock.yml │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── Documentation │ │ ├── compression.md │ │ ├── concurrency.md │ │ ├── encoding.md │ │ ├── gomock-example.md │ │ ├── grpc-auth-support.md │ │ ├── grpc-metadata.md │ │ ├── keepalive.md │ │ ├── log_levels.md │ │ ├── proxy.md │ │ ├── rpc-errors.md │ │ ├── server-reflection-tutorial.md │ │ └── versioning.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── backoff.go │ │ ├── balancer.go │ │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ ├── grpclb │ │ │ ├── grpc_lb_v1 │ │ │ │ └── load_balancer.pb.go │ │ │ ├── grpclb.go │ │ │ ├── grpclb_picker.go │ │ │ ├── grpclb_remote_balancer.go │ │ │ ├── grpclb_test.go │ │ │ ├── grpclb_util.go │ │ │ ├── grpclb_util_test.go │ │ │ └── regenerate.sh │ │ └── roundrobin │ │ │ ├── roundrobin.go │ │ │ └── roundrobin_test.go │ │ ├── balancer_conn_wrappers.go │ │ ├── balancer_switching_test.go │ │ ├── balancer_test.go │ │ ├── balancer_v1_wrapper.go │ │ ├── benchmark │ │ ├── benchmain │ │ │ └── main.go │ │ ├── benchmark.go │ │ ├── benchmark16_test.go │ │ ├── benchmark17_test.go │ │ ├── benchresult │ │ │ └── main.go │ │ ├── client │ │ │ └── main.go │ │ ├── grpc_testing │ │ │ ├── control.pb.go │ │ │ ├── control.proto │ │ │ ├── messages.pb.go │ │ │ ├── messages.proto │ │ │ ├── payloads.pb.go │ │ │ ├── payloads.proto │ │ │ ├── services.pb.go │ │ │ ├── services.proto │ │ │ ├── stats.pb.go │ │ │ └── stats.proto │ │ ├── latency │ │ │ ├── latency.go │ │ │ └── latency_test.go │ │ ├── primitives │ │ │ ├── code_string_test.go │ │ │ ├── context_test.go │ │ │ └── primitives_test.go │ │ ├── run_bench.sh │ │ ├── server │ │ │ └── main.go │ │ ├── stats │ │ │ ├── histogram.go │ │ │ ├── stats.go │ │ │ └── util.go │ │ └── worker │ │ │ ├── benchmark_client.go │ │ │ ├── benchmark_server.go │ │ │ └── main.go │ │ ├── binarylog │ │ └── grpc_binarylog_v1 │ │ │ └── binarylog.pb.go │ │ ├── call.go │ │ ├── call_test.go │ │ ├── channelz │ │ ├── grpc_channelz_v1 │ │ │ └── channelz.pb.go │ │ └── service │ │ │ ├── func_linux.go │ │ │ ├── func_nonlinux.go │ │ │ ├── regenerate.sh │ │ │ ├── service.go │ │ │ ├── service_sktopt_test.go │ │ │ ├── service_test.go │ │ │ ├── util_sktopt_386_test.go │ │ │ └── util_sktopt_amd64_test.go │ │ ├── clientconn.go │ │ ├── clientconn_state_transition_test.go │ │ ├── clientconn_test.go │ │ ├── codec.go │ │ ├── codec_test.go │ │ ├── codegen.sh │ │ ├── codes │ │ ├── code_string.go │ │ ├── codes.go │ │ └── codes_test.go │ │ ├── connectivity │ │ └── connectivity.go │ │ ├── credentials │ │ ├── alts │ │ │ ├── alts.go │ │ │ ├── alts_test.go │ │ │ ├── internal │ │ │ │ ├── authinfo │ │ │ │ │ ├── authinfo.go │ │ │ │ │ └── authinfo_test.go │ │ │ │ ├── common.go │ │ │ │ ├── conn │ │ │ │ │ ├── aeadrekey.go │ │ │ │ │ ├── aeadrekey_test.go │ │ │ │ │ ├── aes128gcm.go │ │ │ │ │ ├── aes128gcm_test.go │ │ │ │ │ ├── aes128gcmrekey.go │ │ │ │ │ ├── aes128gcmrekey_test.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── counter_test.go │ │ │ │ │ ├── record.go │ │ │ │ │ ├── record_test.go │ │ │ │ │ └── utils.go │ │ │ │ ├── handshaker │ │ │ │ │ ├── handshaker.go │ │ │ │ │ ├── handshaker_test.go │ │ │ │ │ └── service │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ └── service_test.go │ │ │ │ ├── proto │ │ │ │ │ └── grpc_gcp │ │ │ │ │ │ ├── altscontext.pb.go │ │ │ │ │ │ ├── handshaker.pb.go │ │ │ │ │ │ └── transport_security_common.pb.go │ │ │ │ ├── regenerate.sh │ │ │ │ └── testutil │ │ │ │ │ └── testutil.go │ │ │ ├── utils.go │ │ │ └── utils_test.go │ │ ├── credentials.go │ │ ├── credentials_test.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── go18.go │ │ ├── go19.go │ │ ├── google │ │ │ └── google.go │ │ └── oauth │ │ │ └── oauth.go │ │ ├── dialoptions.go │ │ ├── doc.go │ │ ├── encoding │ │ ├── encoding.go │ │ ├── gzip │ │ │ └── gzip.go │ │ └── proto │ │ │ ├── proto.go │ │ │ ├── proto_benchmark_test.go │ │ │ └── proto_test.go │ │ ├── examples │ │ ├── README.md │ │ ├── gotutorial.md │ │ ├── helloworld │ │ │ ├── greeter_client │ │ │ │ └── main.go │ │ │ ├── greeter_server │ │ │ │ └── main.go │ │ │ ├── helloworld │ │ │ │ ├── helloworld.pb.go │ │ │ │ └── helloworld.proto │ │ │ └── mock_helloworld │ │ │ │ ├── hw_mock.go │ │ │ │ └── hw_mock_test.go │ │ ├── oauth │ │ │ ├── client │ │ │ │ └── main.go │ │ │ └── server │ │ │ │ └── main.go │ │ ├── route_guide │ │ │ ├── README.md │ │ │ ├── client │ │ │ │ └── client.go │ │ │ ├── mock_routeguide │ │ │ │ ├── rg_mock.go │ │ │ │ └── rg_mock_test.go │ │ │ ├── routeguide │ │ │ │ ├── route_guide.pb.go │ │ │ │ └── route_guide.proto │ │ │ ├── server │ │ │ │ └── server.go │ │ │ └── testdata │ │ │ │ └── route_guide_db.json │ │ └── rpc_errors │ │ │ ├── client │ │ │ └── main.go │ │ │ └── server │ │ │ └── main.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── go16.go │ │ ├── go17.go │ │ ├── grpclog │ │ ├── glogger │ │ │ └── glogger.go │ │ ├── grpclog.go │ │ ├── logger.go │ │ ├── loggerv2.go │ │ └── loggerv2_test.go │ │ ├── health │ │ ├── grpc_health_v1 │ │ │ └── health.pb.go │ │ ├── health.go │ │ ├── health_test.go │ │ └── regenerate.sh │ │ ├── install_gae.sh │ │ ├── interceptor.go │ │ ├── internal │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_test.go │ │ │ ├── env_config.go │ │ │ ├── env_config_test.go │ │ │ ├── method_logger.go │ │ │ ├── method_logger_test.go │ │ │ ├── regenerate.sh │ │ │ ├── regexp_test.go │ │ │ ├── sink.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── channelz │ │ │ ├── funcs.go │ │ │ ├── types.go │ │ │ ├── types_linux.go │ │ │ ├── types_nonlinux.go │ │ │ ├── util_linux_go19.go │ │ │ ├── util_nonlinux_pre_go19.go │ │ │ └── util_test.go │ │ ├── envconfig │ │ │ └── envconfig.go │ │ ├── grpcrand │ │ │ └── grpcrand.go │ │ ├── grpcsync │ │ │ ├── event.go │ │ │ └── event_test.go │ │ ├── internal.go │ │ ├── leakcheck │ │ │ ├── leakcheck.go │ │ │ └── leakcheck_test.go │ │ ├── syscall │ │ │ ├── syscall_linux.go │ │ │ └── syscall_nonlinux.go │ │ ├── testutils │ │ │ ├── pipe_listener.go │ │ │ └── pipe_listener_test.go │ │ └── transport │ │ │ ├── bdp_estimator.go │ │ │ ├── controlbuf.go │ │ │ ├── defaults.go │ │ │ ├── flowcontrol.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── handler_server.go │ │ │ ├── handler_server_test.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ ├── http_util_test.go │ │ │ ├── log.go │ │ │ ├── transport.go │ │ │ └── transport_test.go │ │ ├── interop │ │ ├── alts │ │ │ ├── client │ │ │ │ └── client.go │ │ │ └── server │ │ │ │ └── server.go │ │ ├── client │ │ │ └── client.go │ │ ├── fake_grpclb │ │ │ └── fake_grpclb.go │ │ ├── grpc_testing │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ ├── http2 │ │ │ └── negative_http2_client.go │ │ ├── server │ │ │ └── server.go │ │ └── test_utils.go │ │ ├── keepalive │ │ └── keepalive.go │ │ ├── metadata │ │ ├── metadata.go │ │ └── metadata_test.go │ │ ├── naming │ │ ├── dns_resolver.go │ │ ├── dns_resolver_test.go │ │ ├── go17.go │ │ ├── go17_test.go │ │ ├── go18.go │ │ ├── go18_test.go │ │ └── naming.go │ │ ├── peer │ │ └── peer.go │ │ ├── picker_wrapper.go │ │ ├── picker_wrapper_test.go │ │ ├── pickfirst.go │ │ ├── pickfirst_test.go │ │ ├── proxy.go │ │ ├── proxy_test.go │ │ ├── reflection │ │ ├── README.md │ │ ├── grpc_reflection_v1alpha │ │ │ ├── reflection.pb.go │ │ │ └── reflection.proto │ │ ├── grpc_testing │ │ │ ├── proto2.pb.go │ │ │ ├── proto2.proto │ │ │ ├── proto2_ext.pb.go │ │ │ ├── proto2_ext.proto │ │ │ ├── proto2_ext2.pb.go │ │ │ ├── proto2_ext2.proto │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ ├── grpc_testingv3 │ │ │ ├── testv3.pb.go │ │ │ └── testv3.proto │ │ ├── serverreflection.go │ │ └── serverreflection_test.go │ │ ├── resolver │ │ ├── dns │ │ │ ├── dns_resolver.go │ │ │ ├── dns_resolver_go19_test.go │ │ │ ├── dns_resolver_test.go │ │ │ ├── go18_test.go │ │ │ ├── go19.go │ │ │ ├── pre_go18_test.go │ │ │ └── pre_go19.go │ │ ├── manual │ │ │ └── manual.go │ │ ├── passthrough │ │ │ └── passthrough.go │ │ └── resolver.go │ │ ├── resolver_conn_wrapper.go │ │ ├── resolver_conn_wrapper_test.go │ │ ├── rpc_util.go │ │ ├── rpc_util_test.go │ │ ├── server.go │ │ ├── server_test.go │ │ ├── service_config.go │ │ ├── service_config_test.go │ │ ├── stats │ │ ├── grpc_testing │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ ├── handlers.go │ │ ├── stats.go │ │ └── stats_test.go │ │ ├── status │ │ ├── go16.go │ │ ├── go17.go │ │ ├── go17_test.go │ │ ├── status.go │ │ └── status_test.go │ │ ├── stream.go │ │ ├── stress │ │ ├── client │ │ │ └── main.go │ │ ├── grpc_testing │ │ │ ├── metrics.pb.go │ │ │ └── metrics.proto │ │ └── metrics_client │ │ │ └── main.go │ │ ├── tap │ │ └── tap.go │ │ ├── test │ │ ├── balancer_test.go │ │ ├── bufconn │ │ │ ├── bufconn.go │ │ │ └── bufconn_test.go │ │ ├── channelz_linux_go110_test.go │ │ ├── channelz_test.go │ │ ├── codec_perf │ │ │ ├── perf.pb.go │ │ │ └── perf.proto │ │ ├── creds_test.go │ │ ├── end2end_test.go │ │ ├── go_vet │ │ │ └── vet.go │ │ ├── gracefulstop_test.go │ │ ├── grpc_testing │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ ├── race.go │ │ ├── rawConnWrapper.go │ │ ├── retry_test.go │ │ ├── servertester.go │ │ └── tools │ │ │ └── tools.go │ │ ├── testdata │ │ ├── ca.pem │ │ ├── server1.key │ │ ├── server1.pem │ │ └── testdata.go │ │ ├── trace.go │ │ ├── version.go │ │ └── vet.sh └── gopkg.in │ └── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── decode_test.go │ ├── emitterc.go │ ├── encode.go │ ├── encode_test.go │ ├── example_embedded_test.go │ ├── go.mod │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── suite_test.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── web ├── controller ├── controllerHandler.go ├── controllerResponse.go ├── upload.go └── userInfo.go ├── static ├── css │ ├── addEdu.css │ ├── bootstrap.min.css │ ├── help.css │ ├── index.css │ ├── login.css │ ├── query.css │ ├── queryResult.css │ └── reset.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── head.jpg │ ├── icon_input.png │ ├── icon_list.png │ ├── logo.png │ └── vline.gif └── js │ ├── bootstrap.min.js │ └── jquery.min.js ├── tpl ├── addEdu.html ├── favicon.ico ├── help.html ├── index.html ├── login.html ├── modify.html ├── query.html ├── query2.html └── queryResult.html └── webServer.go /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/.gitignore -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/README.md -------------------------------------------------------------------------------- /chaincode/eduCC.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/chaincode/eduCC.go -------------------------------------------------------------------------------- /chaincode/eduStruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/chaincode/eduStruct.go -------------------------------------------------------------------------------- /chaincode/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/chaincode/main.go -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/config.yaml -------------------------------------------------------------------------------- /fixtures/artifacts/Org1MSPanchors.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/fixtures/artifacts/Org1MSPanchors.tx -------------------------------------------------------------------------------- /fixtures/artifacts/channel.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/fixtures/artifacts/channel.tx -------------------------------------------------------------------------------- /fixtures/artifacts/genesis.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/fixtures/artifacts/genesis.block -------------------------------------------------------------------------------- /fixtures/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/fixtures/docker-compose.yml -------------------------------------------------------------------------------- /fixtures/pull_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/fixtures/pull_images.sh -------------------------------------------------------------------------------- /img/createchannel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/createchannel.png -------------------------------------------------------------------------------- /img/docker_ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/docker_ps.png -------------------------------------------------------------------------------- /img/dockercompose_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/dockercompose_down.png -------------------------------------------------------------------------------- /img/dockercompose_down2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/dockercompose_down2.png -------------------------------------------------------------------------------- /img/dockercompose_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/dockercompose_up.png -------------------------------------------------------------------------------- /img/findEduByCertNoAndName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/findEduByCertNoAndName.png -------------------------------------------------------------------------------- /img/findEduInfoByEntityID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/findEduInfoByEntityID.png -------------------------------------------------------------------------------- /img/html/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html/help.png -------------------------------------------------------------------------------- /img/html/help2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html/help2.png -------------------------------------------------------------------------------- /img/html/help3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html/help3.png -------------------------------------------------------------------------------- /img/html/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html/index.png -------------------------------------------------------------------------------- /img/html/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html/login.png -------------------------------------------------------------------------------- /img/html/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html/query.png -------------------------------------------------------------------------------- /img/html/queryResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html/queryResult.png -------------------------------------------------------------------------------- /img/html/详情.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html/详情.png -------------------------------------------------------------------------------- /img/html_addEdu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html_addEdu.png -------------------------------------------------------------------------------- /img/html_addEdu_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html_addEdu_info.png -------------------------------------------------------------------------------- /img/html_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html_help.png -------------------------------------------------------------------------------- /img/html_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html_index.png -------------------------------------------------------------------------------- /img/html_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html_login.png -------------------------------------------------------------------------------- /img/html_modify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html_modify.png -------------------------------------------------------------------------------- /img/html_modifyResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html_modifyResult.png -------------------------------------------------------------------------------- /img/html_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html_query.png -------------------------------------------------------------------------------- /img/html_query2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html_query2.png -------------------------------------------------------------------------------- /img/html_queryResultbycert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html_queryResultbycert.png -------------------------------------------------------------------------------- /img/html_queryResultbyentityid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/html_queryResultbyentityid.png -------------------------------------------------------------------------------- /img/installcc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/installcc.png -------------------------------------------------------------------------------- /img/modifyEdu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/modifyEdu.png -------------------------------------------------------------------------------- /img/networkArch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/networkArch.png -------------------------------------------------------------------------------- /img/projectArch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/projectArch.png -------------------------------------------------------------------------------- /img/saveedu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/saveedu.png -------------------------------------------------------------------------------- /img/update_findEduByCertNoAndName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/update_findEduByCertNoAndName.png -------------------------------------------------------------------------------- /img/update_findEduInfoByEntityID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/img/update_findEduInfoByEntityID.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/main.go -------------------------------------------------------------------------------- /sdkInit/fabricInitInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/sdkInit/fabricInitInfo.go -------------------------------------------------------------------------------- /sdkInit/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/sdkInit/start.go -------------------------------------------------------------------------------- /service/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/service/domain.go -------------------------------------------------------------------------------- /service/eduService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/service/eduService.go -------------------------------------------------------------------------------- /vendor/github.com/Knetic/govaluate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/Knetic/govaluate/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/Knetic/govaluate/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/Knetic/govaluate/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/Knetic/govaluate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/Knetic/govaluate/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Knetic/govaluate/MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/Knetic/govaluate/MANUAL.md -------------------------------------------------------------------------------- /vendor/github.com/Knetic/govaluate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/Knetic/govaluate/README.md -------------------------------------------------------------------------------- /vendor/github.com/Knetic/govaluate/parsing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/Knetic/govaluate/parsing.go -------------------------------------------------------------------------------- /vendor/github.com/Knetic/govaluate/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/Knetic/govaluate/sql_test.go -------------------------------------------------------------------------------- /vendor/github.com/Knetic/govaluate/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/Knetic/govaluate/test.sh -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/.dockerignore: -------------------------------------------------------------------------------- 1 | cfssl_* 2 | *-amd64 3 | *-386 4 | dist/* 5 | -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/BUILDING.md -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/CHANGELOG -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/Gopkg.lock -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/README.md -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/api/api.go -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/bundler/testdata/empty.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/certdb/dbconf/testdata/db-config.json: -------------------------------------------------------------------------------- 1 | {"driver":"sqlite3","data_source":"certs.db"} 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/certdb/dbconf/testdata/memory_db.json: -------------------------------------------------------------------------------- 1 | {"driver":"sqlite3","data_source":":memory:"} 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/cli/bundle/bundle_test.go: -------------------------------------------------------------------------------- 1 | package bundle 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/cli/cli.go -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/cli/gencrl/testdata/serialList: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/cli/testdata/bad_csr.json: -------------------------------------------------------------------------------- 1 | this is a bad csr json 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/cli/testdata/test.txt: -------------------------------------------------------------------------------- 1 | This is a test file -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/cmd/cfssl/cfssl_test.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/cmd/cfssljson/testdata/test.txt: -------------------------------------------------------------------------------- 1 | This is a test file -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/cmd/mkbundle/mkbundle_test.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/crl/crl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/crl/crl.go -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/crl/testdata/serialList: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/csr/csr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/csr/csr.go -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/helpers/testdata/empty.pem: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/log/log.go -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/multiroot/config/testdata/badconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": 3 | -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/multiroot/config/testdata/db-config.json: -------------------------------------------------------------------------------- 1 | {"driver":"sqlite3","data_source":"certs.db"} 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/scan/pki.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/scan/pki.go -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/cfssl/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/cloudflare/cfssl/test.sh -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/davecgh/go-spew/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/davecgh/go-spew/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/davecgh/go-spew/README.md -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/fsnotify/fsnotify/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/fsnotify/fsnotify/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/fsnotify/fsnotify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/fsnotify/fsnotify/README.md -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/fsnotify/fsnotify/fen.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/golang/mock/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/golang/mock/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/golang/mock/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/golang/mock/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/golang/mock/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/golang/mock/README.md -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/mockgen/tests/vendor_pkg/README.md: -------------------------------------------------------------------------------- 1 | Test for [Issue#4](https://github.com/golang/mock/issues/4). 2 | -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/sample/imp2/imp2.go: -------------------------------------------------------------------------------- 1 | package imp2 2 | 3 | type Imp2 struct{} 4 | -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/sample/imp3/imp3.go: -------------------------------------------------------------------------------- 1 | package imp3 2 | 3 | type Imp3 struct{} 4 | -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/sample/imp4/imp4.go: -------------------------------------------------------------------------------- 1 | package imp_four 2 | 3 | type Imp4 struct{} 4 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/golang/protobuf/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/golang/protobuf/README.md -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/conformance/conformance.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname $0) 4 | exec go run conformance.go $* 5 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/hashicorp/hcl/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/hashicorp/hcl/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/hashicorp/hcl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/hashicorp/hcl/Makefile -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/hashicorp/hcl/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/hashicorp/hcl/decoder.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/hashicorp/hcl/go.mod -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/hashicorp/hcl/go.sum -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/.hidden.ignore: -------------------------------------------------------------------------------- 1 | invalid 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/dir.ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/file.ignore: -------------------------------------------------------------------------------- 1 | invalid 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/good.hcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/comment_lastline.hcl: -------------------------------------------------------------------------------- 1 | #foo -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/comment_single.hcl: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/complex_key.hcl: -------------------------------------------------------------------------------- 1 | foo.bar = "baz" 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/empty.hcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/git_crypt.hcl: -------------------------------------------------------------------------------- 1 | GITCRYPT 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/key_without_value.hcl: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/list.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo"] 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/list_comma.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo",] 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/multiple.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar" 2 | key = 7 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/object_key_assign_without_value.hcl: -------------------------------------------------------------------------------- 1 | foo { 2 | bar = 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/object_key_without_value.hcl: -------------------------------------------------------------------------------- 1 | foo { 2 | bar 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/old.hcl: -------------------------------------------------------------------------------- 1 | default = { 2 | "eu-west-1": "ami-b1cf19c6", 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/structure_empty.hcl: -------------------------------------------------------------------------------- 1 | resource "foo" "bar" {} 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/printer/testdata/comment_newline.golden: -------------------------------------------------------------------------------- 1 | # Hello 2 | # World 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/printer/testdata/comment_newline.input: -------------------------------------------------------------------------------- 1 | # Hello 2 | # World 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/comment_single.hcl: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/complex_key.hcl: -------------------------------------------------------------------------------- 1 | foo.bar = "baz" 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/empty.hcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/list.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo"] 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/list_comma.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo",] 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/multiple.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar" 2 | key = 7 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/old.hcl: -------------------------------------------------------------------------------- 1 | default = { 2 | "eu-west-1": "ami-b1cf19c6", 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/structure_empty.hcl: -------------------------------------------------------------------------------- 1 | resource "foo" "bar" {} 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/hashicorp/hcl/hcl_test.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/json/parser/test-fixtures/bad_input_128.json: -------------------------------------------------------------------------------- 1 | {:{ 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/json/parser/test-fixtures/basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/json/parser/test-fixtures/object.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": { 3 | "bar": [1,2] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/json/test-fixtures/basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/json/test-fixtures/object.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": { 3 | "bar": [1,2] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/lex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/hashicorp/hcl/lex_test.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/hashicorp/hcl/parse.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/basic_int_string.hcl: -------------------------------------------------------------------------------- 1 | count = "3" 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/block_assign.hcl: -------------------------------------------------------------------------------- 1 | environment = "aws" { 2 | } 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/empty.hcl: -------------------------------------------------------------------------------- 1 | resource "foo" {} 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/flat.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar" 2 | Key = 7 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/float.hcl: -------------------------------------------------------------------------------- 1 | a = 1.02 2 | b = 2 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/git_crypt.hcl: -------------------------------------------------------------------------------- 1 | GITCRYPT 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/list_of_lists.hcl: -------------------------------------------------------------------------------- 1 | foo = [["foo"], ["bar"]] 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/multiline.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar\nbaz" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/multiline_literal.hcl: -------------------------------------------------------------------------------- 1 | multiline_literal = "hello 2 | world" -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/multiline_literal_with_hil.hcl: -------------------------------------------------------------------------------- 1 | multiline_literal_with_hil = "${hello 2 | world}" -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/multiline_no_marker.hcl: -------------------------------------------------------------------------------- 1 | foo = << 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/structure_list_empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": [] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/unterminated_block_comment.hcl: -------------------------------------------------------------------------------- 1 | /* 2 | Foo 3 | -------------------------------------------------------------------------------- /vendor/github.com/hyperledger/fabric-sdk-go/ci.properties: -------------------------------------------------------------------------------- 1 | GO_VER=1.10 2 | -------------------------------------------------------------------------------- /vendor/github.com/hyperledger/fabric-sdk-go/pkg/client/resmgmt/testdata/extractcherr.tx: -------------------------------------------------------------------------------- 1 | ExtractChannelConfigError -------------------------------------------------------------------------------- /vendor/github.com/hyperledger/fabric-sdk-go/pkg/client/resmgmt/testdata/signcherr.tx: -------------------------------------------------------------------------------- 1 | SignChannelConfigError -------------------------------------------------------------------------------- /vendor/github.com/hyperledger/fabric-sdk-go/pkg/client/resmgmt/testdata/test.tx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pelletier/go-toml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pelletier/go-toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pelletier/go-toml/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pelletier/go-toml/fuzz.sh -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pelletier/go-toml/test.sh -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/toml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pelletier/go-toml/toml.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pkg/errors/bench_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pkg/errors/errors_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pkg/errors/format_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/pkg/errors/stack_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/afero_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/afero_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/basepath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/basepath.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/const_bsds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/const_bsds.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/afero 2 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/httpFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/httpFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/ioutil.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/lstater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/lstater.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/match_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/mem/dir.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/dirmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/mem/dirmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/mem/file.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/memmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/memmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/path_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/readonlyfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/readonlyfs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/regexpfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/regexpfs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/unionFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/unionFile.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/afero/util_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/cast/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/cast/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/cast/cast_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/jwalterweatherman/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/jwalterweatherman 2 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/bool_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/bytes_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/count_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/flag_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/ip_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/ipnet_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/verify/all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/pflag/verify/all.sh -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/viper/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/viper/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/viper/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/viper/flags.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/viper/flags_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/viper/go.mod -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/viper/go.sum -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/viper/util_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/viper/viper.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/viper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/spf13/viper/viper_test.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/github.com/stretchr/testify/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/acme/http.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/acme/jws_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/argon2/argon2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/argon2/argon2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/bcrypt/base64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/bcrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/bcrypt/bcrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/bn256/bn256.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/bn256/curve.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/bn256/gfp12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/bn256/gfp2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/bn256/gfp6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/optate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/bn256/optate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/twist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/bn256/twist.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cast5/cast5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/cast5/cast5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/md4/md4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/md4/md4block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/box/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/nacl/box/box.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/openpgp/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/openpgp/read.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/openpgp/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/otr/otr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/otr/otr_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/smp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/otr/smp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/pkcs12/crypto.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/pkcs12/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/pkcs12/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pbkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/pkcs12/pbkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pkcs12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/pkcs12/pkcs12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/scrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/scrypt/scrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/sha3/hashes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/sha3/keccakf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/sha3/register.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/sha3/shake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/kex_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/keys_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/mux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/test/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/tea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/tea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/tea/tea_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/xtea/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/xtea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/xts/xts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/crypto/xts/xts_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/bpf/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/instructions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/bpf/instructions.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/bpf/vm_bpf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_jump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/bpf/vm_jump_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/bpf/vm_load_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_ret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/bpf/vm_ret_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/bpf/vm_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/context/pre_go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/entity_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/escape_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/node_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/parse_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/render_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/html/token_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/flow_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/frame_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17_not18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/go17_not18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go18_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/go18_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go19_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/go19_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2c/h2c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/h2c/h2c.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/h2demo/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/h2i/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/http2_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/not_go111.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/not_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/not_go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/not_go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/pipe_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/diag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/diag_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/dstunreach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/dstunreach.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/extension.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/interface.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/ipv4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/listen_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/listen_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/messagebody.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/messagebody.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/multipart.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/paramprob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/paramprob.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/icmp/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/idna/idna_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/bpf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/control_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/defs_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/defs_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/defs_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/dgramopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/genericopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/genericopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/header_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/icmp_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_asmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/sys_asmreq.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_asmreqn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/sys_asmreqn.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/sys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/sys_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_ssmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/sys_ssmreq.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/sys_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/zsys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv4/zsys_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/bpf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/defs_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/defs_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/defs_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/dgramopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/genericopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/genericopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/header_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/icmp_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_asmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/sys_asmreq.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/sys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/sys_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_ssmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/sys_ssmreq.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/sys_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/zsys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/ipv6/zsys_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/lif/address.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/lif/address_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/lif/binary.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/lif/defs_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/lif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/lif/lif.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/lif/link.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/lif/link_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/lif/sys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/lif/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/nettest/conntest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/nettest/conntest.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/netutil/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/netutil/listen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/proxy/proxy_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/publicsuffix/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/publicsuffix/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/route/address.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/route/binary.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/route/interface.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/route/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/route/route.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/route/route_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/route/sys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/route/sys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/sys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/route/sys_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/route/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/trace/trace_go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/trace/trace_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/trace/trace_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/webdav/file_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/webdav/if_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/webdav/lock_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/webdav/prop_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/webdav/xml_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/websocket/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/websocket/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/websocket/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/xsrftoken/xsrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/net/xsrftoken/xsrf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gccgo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/cpu/cpu_gccgo.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/cpu/cpu_gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/cpu/cpu_mips64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/cpu/cpu_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/cpu/cpu_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/dir_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/plan9/dir_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/plan9/env_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/plan9/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/plan9/pwd_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/creds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/creds_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/export_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/mkall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/linux/mkall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/linux/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/types_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/unix/xattr_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/windows/svc/go12.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/windows/svc/go12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/windows/svc/go13.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/cases/fold_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/cases/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/cases/icu_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/cases/map_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cmd/gotext/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/cmd/gotext/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cmd/gotext/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/cmd/gotext/main.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/collate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/collate/collate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/collate/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/collate/option.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/collate/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/currency/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/currency/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/currency/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/currency/query.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/currency/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/date/data_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/date/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/date/gen_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/date/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/internal/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/internal/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/internal/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/language/Makefile -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/language/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/go1_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/language/go1_1.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/language/go1_2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/language/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/language/lookup.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/language/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/message/catalog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/message/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/message/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/message/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/message/print.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/number/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/number/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/number/number.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/number/option.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/runes/cond_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/search/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/search/pattern.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/search/search.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/search/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/secure/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/unicode/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/width/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @pongad @jba 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/genproto/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/regen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/genproto/regen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/genproto/regen.sh -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/.github/lock.yml: -------------------------------------------------------------------------------- 1 | daysUntilLock: 180 2 | lockComment: false 3 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/call_test.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/clientconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/clientconn.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/codec_test.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/go.mod -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/go.sum -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/go16.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/go17.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/pickfirst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/pickfirst.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/proxy_test.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/test/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/test/race.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /web/controller/controllerHandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/controller/controllerHandler.go -------------------------------------------------------------------------------- /web/controller/controllerResponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/controller/controllerResponse.go -------------------------------------------------------------------------------- /web/controller/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/controller/upload.go -------------------------------------------------------------------------------- /web/controller/userInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/controller/userInfo.go -------------------------------------------------------------------------------- /web/static/css/addEdu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/static/css/addEdu.css -------------------------------------------------------------------------------- /web/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/static/css/help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/static/css/help.css -------------------------------------------------------------------------------- /web/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/static/css/index.css -------------------------------------------------------------------------------- /web/static/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/static/css/login.css -------------------------------------------------------------------------------- /web/static/css/query.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/static/css/query.css -------------------------------------------------------------------------------- /web/static/css/queryResult.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/static/css/queryResult.css -------------------------------------------------------------------------------- /web/static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/static/css/reset.css -------------------------------------------------------------------------------- /web/static/images/head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/static/images/head.jpg -------------------------------------------------------------------------------- /web/static/images/icon_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/static/images/icon_input.png -------------------------------------------------------------------------------- /web/static/images/icon_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/static/images/icon_list.png -------------------------------------------------------------------------------- /web/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/static/images/logo.png -------------------------------------------------------------------------------- /web/static/images/vline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/static/images/vline.gif -------------------------------------------------------------------------------- /web/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/static/js/jquery.min.js -------------------------------------------------------------------------------- /web/tpl/addEdu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/tpl/addEdu.html -------------------------------------------------------------------------------- /web/tpl/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/tpl/favicon.ico -------------------------------------------------------------------------------- /web/tpl/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/tpl/help.html -------------------------------------------------------------------------------- /web/tpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/tpl/index.html -------------------------------------------------------------------------------- /web/tpl/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/tpl/login.html -------------------------------------------------------------------------------- /web/tpl/modify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/tpl/modify.html -------------------------------------------------------------------------------- /web/tpl/query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/tpl/query.html -------------------------------------------------------------------------------- /web/tpl/query2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/tpl/query2.html -------------------------------------------------------------------------------- /web/tpl/queryResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/tpl/queryResult.html -------------------------------------------------------------------------------- /web/webServer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucuncong/Education/HEAD/web/webServer.go --------------------------------------------------------------------------------