Searched full:secrets (Results 1 – 25 of 242) sorted by relevance
12345678910
/external/python/cpython3/Lib/test/ |
D | test_secrets.py | 1 """Test the secrets module. 3 As most of the functions in secrets are thin wrappers around functions 8 import secrets 16 """Test secrets.compare_digest function.""" 23 self.assertTrue(secrets.compare_digest(a, b)) 24 self.assertTrue(secrets.compare_digest(a.encode('utf-8'), b.encode('utf-8'))) 28 self.assertFalse(secrets.compare_digest("abc", "abcd")) 29 self.assertFalse(secrets.compare_digest(b"abc", b"abcd")) 33 self.assertFalse(secrets.compare_digest(a, b)) 34 self.assertFalse(secrets.compare_digest(a.encode('utf-8'), b.encode('utf-8'))) [all …]
|
/external/python/cpython3/Doc/library/ |
D | secrets.rst | 1 :mod:`secrets` --- Generate secure random numbers for managing secrets 4 .. module:: secrets 5 :synopsis: Generate secure random numbers for managing secrets. 13 from secrets import * 16 **Source code:** :source:`Lib/secrets.py` 20 The :mod:`secrets` module is used for generating cryptographically strong 22 authentication, security tokens, and related secrets. 24 In particular, :mod:`secrets` should be used in preference to the 36 The :mod:`secrets` module provides access to the most secure source of 61 The :mod:`secrets` module provides functions for generating secure [all …]
|
/external/okio/.github/workflows/ |
D | build.yml | 104 ORG_GRADLE_PROJECT_SONATYPE_NEXUS_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }} 105 ORG_GRADLE_PROJECT_SONATYPE_NEXUS_PASSWORD: ${{ secrets.SONATYPE_NEXUS_PASSWORD }} 125 ORG_GRADLE_PROJECT_SONATYPE_NEXUS_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }} 126 ORG_GRADLE_PROJECT_SONATYPE_NEXUS_PASSWORD: ${{ secrets.SONATYPE_NEXUS_PASSWORD }} 159 GITHUB_TOKEN: ${{ secrets.GH_CLIPPY_TOKEN }}
|
/external/ppp/pppd/ |
D | pppd.8 | 232 element of the list of allowed IP addresses in the secrets files (see 342 \fIporsche.Quotron.COM\fR for looking up secrets in the secrets file, 623 must have an entry in the /etc/ppp/pap\-secrets file as well as the 701 use lines in the secrets files which have \fIname\fR as the second 873 Indicates that all secrets in the /etc/ppp/pap\-secrets file which are 876 identical to the secret from the /etc/ppp/pap\-secrets file. 1218 if it has no secrets which could be used to do so. 1220 Pppd stores secrets for use in authentication in secrets 1221 files (/etc/ppp/pap\-secrets for PAP, /etc/ppp/chap\-secrets for CHAP, 1222 MS\-CHAP, MS\-CHAPv2, and EAP MD5-Challenge, and /etc/ppp/srp\-secrets [all …]
|
D | srp-entry.8 | 21 /etc/ppp/srp\-secrets file on a PPP EAP SRP\-SHA1 authenticator 23 authentication files, /etc/ppp/pap\-secrets and /etc/ppp/chap\-secrets. 54 .B /etc/ppp/srp\-secrets
|
D | pathnames.h | 21 #define _PATH_UPAPFILE _ROOT_PATH "/etc/ppp/pap-secrets" 22 #define _PATH_CHAPFILE _ROOT_PATH "/etc/ppp/chap-secrets" 23 #define _PATH_SRPFILE _ROOT_PATH "/etc/ppp/srp-secrets"
|
/external/lottie/ |
D | decrypt.sh | 5 … $encrypted_7f6a0d70974a_key -iv $encrypted_7f6a0d70974a_iv -in secrets.tar.enc -out secrets.tar -d 6 tar xvf secrets.tar
|
/external/python/oauth2client/oauth2client/ |
D | clientsecrets.py | 70 """Validate parsed client secrets from a file. 73 clientsecrets_dict: dict, a dictionary holding the client secrets. 143 client_type, client_info = loadfile('secrets.json') 146 client_type, client_info = loadfile('secrets.json', cache=memcache) 163 _SECRET_NAMESPACE = 'oauth2client:secrets#ns'
|
/external/tcpdump/tests/ |
D | crypto.sh | 48 if ./TESTonce esp4 08-sunrise-sunset-esp2.pcap esp2.out '-E "file esp-secrets.txt"' 57 if ./TESTonce esp5 08-sunrise-sunset-aes.pcap esp5.out '-E "file esp-secrets.txt"' 66 if ./TESTonce espudp1 espudp1.pcap espudp1.out '-nnnn -E "file esp-secrets.txt"' 75 if ./TESTonce ikev2pI2 ikev2pI2.pcap ikev2pI2.out '-E "file ikev2pI2-secrets.txt" -v -v -v -v' 84 if ./TESTonce isakmp4 isakmp4500.pcap isakmp4.out '-E "file esp-secrets.txt"'
|
/external/ppp/pppd/plugins/radius/ |
D | pppd-radius.8 | 22 .I /etc/ppp/pap-secrets 24 .I /etc/ppp/chap-secrets 59 schemes (login, checking the /etc/ppp/*-secrets files) are skipped. The
|
/external/llvm-project/libcxx/utils/docker/debian9/buildbot/ |
D | docker-compose.yml | 12 secrets: 17 secrets:
|
/external/fonttools/.github/workflows/ |
D | publish.yml | 27 TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} 28 TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
/external/grpc-grpc/tools/internal_ci/macos/ |
D | grpc_interop_toprod.cfg | 19 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/GrpcTesting-d0eeee2db331.json" 20 gfile_resources: "/bigstore/grpc-testing-secrets/interop/service_account/GrpcTesting-726eb1347f15.j…
|
/external/rust/crates/grpcio-sys/grpc/tools/internal_ci/macos/pull_request/ |
D | grpc_bazel_c_cpp_dbg.cfg | 21 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/GrpcTesting-d0eeee2db331.json" 22 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/resultstore_api_key"
|
D | grpc_bazel_c_cpp_opt.cfg | 21 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/GrpcTesting-d0eeee2db331.json" 22 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/resultstore_api_key"
|
/external/python/google-api-python-client/docs/ |
D | README.md | 26 - [Client Secrets](client-secrets.md)
|
/external/rust/crates/grpcio-sys/grpc/tools/internal_ci/windows/pull_request/ |
D | grpc_bazel_rbe_dbg.cfg | 22 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/GrpcTesting-d0eeee2db331.json" 23 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/resultstore_api_key"
|
D | grpc_bazel_rbe_opt.cfg | 22 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/GrpcTesting-d0eeee2db331.json" 23 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/resultstore_api_key"
|
/external/rust/crates/grpcio-sys/grpc/tools/internal_ci/macos/ |
D | grpc_bazel_c_cpp_dbg.cfg | 21 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/GrpcTesting-d0eeee2db331.json" 22 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/resultstore_api_key"
|
D | grpc_bazel_c_cpp_opt.cfg | 21 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/GrpcTesting-d0eeee2db331.json" 22 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/resultstore_api_key"
|
/external/capstone/.github/workflows/ |
D | coverity-scan.yml | 17 TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} 41 TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
|
/external/curl/docs/libcurl/opts/ |
D | CURLOPT_PRIVATE.3 | 43 struct private secrets; 49 curl_easy_setopt(curl, CURLOPT_PRIVATE, &secrets);
|
/external/rust/crates/grpcio-sys/grpc/tools/internal_ci/windows/ |
D | grpc_bazel_rbe_dbg.cfg | 22 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/GrpcTesting-d0eeee2db331.json" 23 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/resultstore_api_key"
|
D | grpc_bazel_rbe_opt.cfg | 22 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/GrpcTesting-d0eeee2db331.json" 23 gfile_resources: "/bigstore/grpc-testing-secrets/gcp_credentials/resultstore_api_key"
|
/external/curl/tests/data/ |
D | test259 | 20 Proxy-Authenticate: Digest realm="many secrets", nonce="911" 36 Proxy-Authenticate: Digest realm="many secrets", nonce="911" 107 Proxy-Authorization: Digest username="uuuser", realm="many secrets", nonce="911", uri="/we/want/259…
|
12345678910