-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SANTUARIO-511: Implementation of the Diffie-Hellman-ES key exchange f…
…or EC and XEC keys (#234) * Implementation of the Diffie-Hellman agreement for EC and XEC keys for main branch (4.0.x) * Fix CodeQL warnings * Update for the PR comments * Update for the PR comments part 2 * Update for the PR comments part 3 * Update for the PR comments part 4 * Update for the PR comments part 4 * Update for the PR comments part 5 * Improve code quality * Update for the PR comments part 6 * Move encryption specific classes to org.apache.xml.security.encryption package. * Fix the PR comments * Added DEREncodedKeyValue for DH and RSASSA-PSS keys, other PR fixes * PR updates on usage of the AlgorithmParameterSpec interface * PR updates for method XMLCipher.encryptKey * PR update descriptions and class names * PR update descriptions and class names * PR - fix typos and javadoc * PR updates --------- Co-authored-by: RIHTARSIC Joze <[email protected]>
- Loading branch information
Showing
61 changed files
with
3,863 additions
and
212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
src/main/java/org/apache/xml/security/encryption/KeyDerivationMethod.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.apache.xml.security.encryption; | ||
|
||
/** | ||
* The key derivation is to generate new cryptographic key material from existing key material such as the shared | ||
* secret and any other (private or public) information. The purpose of the key derivation is an extension of a given | ||
* but limited set of original key materials and to limit the use (exposure) of such key material. | ||
* | ||
* The Schema for KeyDerivationMethod is as follows: | ||
* <pre> | ||
* <element name="KeyDerivationMethod" type="xenc:KeyDerivationMethodType"/> | ||
* <complexType name="KeyDerivationMethodType"> | ||
* <sequence> | ||
* <any namespace="##any" minOccurs="0" maxOccurs="unbounded"/> | ||
* </sequence> | ||
* <attribute name="Algorithm" type="anyURI" use="required"/> | ||
* </complexType> | ||
* </pre> | ||
*/ | ||
public interface KeyDerivationMethod { | ||
|
||
/** | ||
* Returns the algorithm URI of this <code>KeyDerivationMethod</code>. | ||
* | ||
* @return the algorithm URI of this <code>KeyDerivationMethod</code> | ||
*/ | ||
String getAlgorithm(); | ||
} |
Oops, something went wrong.