jdk/src/share/classes/sun/security/util/ManifestEntryVerifier.java
changeset 9248 44d129a2adfa
parent 9001 4eb5b77d7425
child 9365 469cd39a25de
equal deleted inserted replaced
9247:95f4914b7ead 9248:44d129a2adfa
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   189      * the first time we have verified this object, remove its
   189      * the first time we have verified this object, remove its
   190      * code signers from sigFileSigners and place in verifiedSigners.
   190      * code signers from sigFileSigners and place in verifiedSigners.
   191      *
   191      *
   192      *
   192      *
   193      */
   193      */
   194     public CodeSigner[] verify(Hashtable<String, CodeSigner[]> verifiedSigners,
   194     public CodeSigner[] verify(Map<String, CodeSigner[]> verifiedSigners,
   195                 Hashtable<String, CodeSigner[]> sigFileSigners)
   195                 Map<String, CodeSigner[]> sigFileSigners)
   196         throws JarException
   196         throws JarException
   197     {
   197     {
   198         if (skip) {
   198         if (skip) {
   199             return null;
   199             return null;
   200         }
   200         }