Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for writePublicKeyRingTo (0.57 sec)

  1. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/SimpleKeyRing.groovy

    @CompileStatic
    @Canonical
    class SimpleKeyRing {
        final String name
        final PGPSecretKey secretKey
        final PGPPublicKey publicKey
        final String password
    
        void writePublicKeyRingTo(File file) {
            def asciiArmored = file.name.endsWith(".keys")
            file.newOutputStream().withCloseable {stream ->
                (asciiArmored ? new ArmoredOutputStream(stream) : stream).withCloseable { out ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            if (valid == null) {
                return
            }
            if (valid) {
                keyring.writePublicKeyRingTo(target)
            } else {
                def differentKeyring = newKeyRing()
                differentKeyring.writePublicKeyRingTo(target)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
Back to top