You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oltu.apache.org by si...@apache.org on 2010/07/05 12:33:45 UTC

svn commit: r960531 - in /incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature: SigningKey.java VerifyingKey.java

Author: simonetripodi
Date: Mon Jul  5 10:33:44 2010
New Revision: 960531

URL: http://svn.apache.org/viewvc?rev=960531&view=rev
Log:
first checkin of Signing/Verifying keys used by signing algorithms

Added:
    incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/SigningKey.java   (with props)
    incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/VerifyingKey.java   (with props)

Added: incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/SigningKey.java
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/SigningKey.java?rev=960531&view=auto
==============================================================================
--- incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/SigningKey.java (added)
+++ incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/SigningKey.java Mon Jul  5 10:33:44 2010
@@ -0,0 +1,26 @@
+/*
+ * 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.amber.signature;
+
+/**
+ * Identifies that the key has to be used to sign requests.
+ *
+ * @version $Id$
+ */
+public interface SigningKey extends Key {
+
+}

Propchange: incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/SigningKey.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/SigningKey.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/SigningKey.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/VerifyingKey.java
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/VerifyingKey.java?rev=960531&view=auto
==============================================================================
--- incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/VerifyingKey.java (added)
+++ incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/VerifyingKey.java Mon Jul  5 10:33:44 2010
@@ -0,0 +1,26 @@
+/*
+ * 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.amber.signature;
+
+/**
+ * Identifies that the key has to be used to verify requests.
+ *
+ * @version $Id$
+ */
+public interface VerifyingKey extends Key {
+
+}

Propchange: incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/VerifyingKey.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/VerifyingKey.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: incubator/amber/trunk/spec-api/src/main/java/org/apache/amber/signature/VerifyingKey.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain