Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for passphrase (0.1 sec)

  1. compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/Authentication.java

         *
         * @param passphrase passphrase of the private key file
         */
        public void setPassphrase(final String passphrase) {
            this.passphrase = passphrase;
        }
    
        /**
         * Get the absolute path to the private key file.
         *
         * @return absolute path to private key
         */
        public String getPrivateKey() {
            return privateKey;
        }
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/DefaultSettingsDecrypter.java

                    }
                }
    
                String passphrase = server.getPassphrase();
                if (securityDispatcher.isAnyEncryptedString(passphrase)) {
                    try {
                        if (securityDispatcher.isLegacyEncryptedString(passphrase)) {
                            problems.add(new DefaultSettingsProblem(
                                    "Legacy/insecurely encrypted passphrase detected for server " + server.getId(),
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/maven/conf/settings.xml

        <!-- Another sample, using keys to authenticate.
        <server>
          <id>siteServer</id>
          <privateKey>/path/to/private/key</privateKey>
          <passphrase>optional; leave empty if not used.</passphrase>
        </server>
        -->
      </servers>
    
      <!-- mirrors
       | This is a list of mirrors to be used in downloading artifacts from remote repositories.
       |
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 15:53:41 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. pom.xml

    					<!--
    					<signPackage>${deb.sign}</signPackage>
    					<keyring>${gpg.keyring}</keyring>
    					key>${gpg.key}</key>
    					<passphrase>${gpg.passphrase}</passphrase>
    					<signMethod>${deb.sign.method}</signMethod>
    					-->
    					<dataSet>
    						<!-- Add app directory -->
    						<data>
    							<type>directory</type>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 02:16:03 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  5. docs/tls/README.md

    OU = MyOU
    CN = MyServerName
    
    [v3_req]
    subjectAltName = @alt_names
    
    [alt_names]
    IP.1 = 127.0.0.1
    DNS.1 = localhost
    ```
    
    Run `openssl` by specifying the configuration file and enter a passphrase if prompted:
    
    ```sh
    openssl req -new -x509 -nodes -days 730 -keyout private.key -out public.crt -config openssl.conf
    ```
    
    ### 3.3 Use GnuTLS (for Windows) to Generate a Certificate
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  6. Makefile

    	@cp -af ./minio minio-release/$(GOOS)-$(GOARCH)/minio.$(VERSION)
    	@minisign -qQSm minio-release/$(GOOS)-$(GOARCH)/minio.$(VERSION) -s "${CRED_DIR}/minisign.key" < "${CRED_DIR}/minisign-passphrase"
    	@sha256sum < minio-release/$(GOOS)-$(GOARCH)/minio.$(VERSION) | sed 's, -,minio.$(VERSION),g' > minio-release/$(GOOS)-$(GOARCH)/minio.$(VERSION).sha256sum
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 31 22:10:24 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. api/maven-api-settings/src/main/mdo/settings.mdo

                The private key location used to authenticate.
              </description>
              <type>String</type>
            </field>
            <field>
              <name>passphrase</name>
              <version>1.0.0+</version>
              <description>
                The passphrase used in conjunction with the privateKey to authenticate.
              </description>
              <type>String</type>
            </field>
            <field>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Oct 08 13:46:42 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    2E18..2E1B    ; valid                  ;      ; NV8    # 5.1  INVERTED INTERROBANG..TILDE WITH RING ABOVE
    2E1C..2E1D    ; valid                  ;      ; NV8    # 4.1  LEFT LOW PARAPHRASE BRACKET..RIGHT LOW PARAPHRASE BRACKET
    2E1E..2E2E    ; valid                  ;      ; NV8    # 5.1  TILDE WITH DOT ABOVE..REVERSED QUESTION MARK
    2E2F          ; valid                                  # 5.1  VERTICAL TILDE
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
Back to top