You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pl...@apache.org on 2015/11/05 02:51:37 UTC

directory-kerby git commit: Ignore the PKCS8Key#decryptPKCS8 and Ping#main method length more than 200 lines.

Repository: directory-kerby
Updated Branches:
  refs/heads/pkinit-support 7500d4d6f -> 886053113


Ignore the PKCS8Key#decryptPKCS8 and Ping#main method length more than 200 lines.


Project: http://git-wip-us.apache.org/repos/asf/directory-kerby/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-kerby/commit/88605311
Tree: http://git-wip-us.apache.org/repos/asf/directory-kerby/tree/88605311
Diff: http://git-wip-us.apache.org/repos/asf/directory-kerby/diff/88605311

Branch: refs/heads/pkinit-support
Commit: 8860531132d3eb62803654aadec7828a5ca53278
Parents: 7500d4d
Author: plusplusjiajia <ji...@intel.com>
Authored: Thu Nov 5 09:56:53 2015 +0800
Committer: plusplusjiajia <ji...@intel.com>
Committed: Thu Nov 5 09:56:53 2015 +0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/commons/ssl/PKCS8Key.java              | 1 +
 .../src/main/java/org/apache/commons/ssl/Ping.java                  | 1 +
 2 files changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-kerby/blob/88605311/3rdparty/not-yet-commons-ssl/src/main/java/org/apache/commons/ssl/PKCS8Key.java
----------------------------------------------------------------------
diff --git a/3rdparty/not-yet-commons-ssl/src/main/java/org/apache/commons/ssl/PKCS8Key.java b/3rdparty/not-yet-commons-ssl/src/main/java/org/apache/commons/ssl/PKCS8Key.java
index f55ba32..7bbf3c3 100644
--- a/3rdparty/not-yet-commons-ssl/src/main/java/org/apache/commons/ssl/PKCS8Key.java
+++ b/3rdparty/not-yet-commons-ssl/src/main/java/org/apache/commons/ssl/PKCS8Key.java
@@ -461,6 +461,7 @@ public class PKCS8Key {
         return new DecryptResult(transformation, keySize, decryptedBytes);
     }
 
+    @SuppressWarnings("checkstyle:methodlength")
     private static DecryptResult decryptPKCS8(Asn1PkcsStructure pkcs8,
                                               char[] password)
         throws GeneralSecurityException {

http://git-wip-us.apache.org/repos/asf/directory-kerby/blob/88605311/3rdparty/not-yet-commons-ssl/src/main/java/org/apache/commons/ssl/Ping.java
----------------------------------------------------------------------
diff --git a/3rdparty/not-yet-commons-ssl/src/main/java/org/apache/commons/ssl/Ping.java b/3rdparty/not-yet-commons-ssl/src/main/java/org/apache/commons/ssl/Ping.java
index d22e41e..8738b71 100644
--- a/3rdparty/not-yet-commons-ssl/src/main/java/org/apache/commons/ssl/Ping.java
+++ b/3rdparty/not-yet-commons-ssl/src/main/java/org/apache/commons/ssl/Ping.java
@@ -97,6 +97,7 @@ public class Ping {
         argsMatch = Collections.unmodifiableMap(argsMatch);
     }
 
+    @SuppressWarnings("checkstyle:methodlength")
     public static void main(String[] args) throws Exception {
         boolean showUsage = args.length == 0;
         Exception parseException = null;