Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for createPrivateKey (0.32 sec)

  1. platforms/software/security/src/main/java/org/gradle/plugins/signing/signatory/pgp/PgpSignatory.java

        private final PGPPrivateKey privateKey;
    
        public PgpSignatory(String name, PGPSecretKey secretKey, String password) {
            this.name = name;
            this.secretKey = secretKey;
            this.privateKey = createPrivateKey(secretKey, password);
        }
    
        @Override
        public final String getName() {
            return name;
        }
    
        /**
         * Exhausts {@code toSign}, and writes the signature to {@code signatureDestination}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top