Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ArmoredOutputStream (0.3 sec)

  1. platforms/software/security/src/main/java/org/gradle/plugins/signing/type/pgp/ArmoredSignatureType.java

            return "asc";
        }
    
        @Override
        public void sign(Signatory signatory, InputStream toSign, OutputStream destination) {
            try (OutputStream armoredOutputStream = new ArmoredOutputStream(destination)) {
                super.sign(signatory, toSign, armoredOutputStream);
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/SimpleKeyRing.groovy

     * limitations under the License.
     */
    
    package org.gradle.security.fixtures
    
    import groovy.transform.Canonical
    import groovy.transform.CompileStatic
    import org.bouncycastle.bcpg.ArmoredOutputStream
    import org.bouncycastle.openpgp.PGPPrivateKey
    import org.bouncycastle.openpgp.PGPPublicKey
    import org.bouncycastle.openpgp.PGPPublicKeyRing
    import org.bouncycastle.openpgp.PGPPublicKeyRingCollection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/KeyServer.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.security.fixtures
    
    import org.bouncycastle.bcpg.ArmoredOutputStream
    import org.bouncycastle.openpgp.PGPPublicKey
    import org.gradle.security.internal.Fingerprint
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.server.http.HttpServer
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/SigningFixtures.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.security.fixtures
    
    import groovy.transform.CompileStatic
    import org.bouncycastle.bcpg.ArmoredOutputStream
    import org.bouncycastle.bcpg.CompressionAlgorithmTags
    import org.bouncycastle.bcpg.HashAlgorithmTags
    import org.bouncycastle.bcpg.PublicKeyAlgorithmTags
    import org.bouncycastle.bcpg.attr.ImageAttribute
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

                        }
                    }
                }
                // Then write the ascii armored keyring
                try (FileOutputStream fos = new FileOutputStream(ascii, true);
                     ArmoredOutputStream out = new ArmoredOutputStream(fos)) {
                    keyRing.encode(out, true);
                }
                hasKey = true;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top