Home | History | Annotate | Download | only in crypto

Lines Matching refs:algName

60     private String algName;
93 algName = aId.getAlgorithm();
94 // algName == oid now
96 // algName == name from map oid->name if mapping exists, or
97 // algName == oid if mapping does not exist
103 aParams = AlgorithmParameters.getInstance(algName);
106 algName = aParams.getAlgorithm();
141 this.algName = encryptionAlgorithmName;
143 throw new NoSuchAlgorithmException("Unsupported algorithm: " + this.algName);
187 this.algName = this.algParameters.getAlgorithm();
189 throw new NoSuchAlgorithmException("Unsupported algorithm: " + this.algName);
199 return algName;
284 Cipher cipher = Cipher.getInstance(algName);
343 Cipher cipher = Cipher.getInstance(algName, providerName);
397 Cipher cipher = Cipher.getInstance(algName, provider);
447 if (AlgNameMapper.isOID(this.algName)) {
450 this.oid = AlgNameMapper.normalize(this.algName);
451 // try to find mapping OID->algName
452 this.algName = AlgNameMapper.map2AlgName(this.oid);
453 // if there is no mapping OID->algName
454 // set OID as algName
455 if (this.algName == null) {
456 this.algName = this.oid;
459 String stdName = AlgNameMapper.getStandardName(this.algName);
461 // try to find mapping algName->OID or
462 // (algName->stdAlgName)->OID
463 this.oid = AlgNameMapper.map2OID(this.algName);
473 this.algName = stdName;
475 this.algName = stdName;