1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
//
// WrappedKeySecurityTokenTest.cs
//
// Author:
// Atsushi Enomoto <atsushi@ximian.com>
//
// Copyright (C) 2007 Novell, Inc. http://www.novell.com
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
#if !MOBILE
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IdentityModel.Selectors;
using System.IdentityModel.Tokens;
using System.Security.Cryptography.X509Certificates;
using System.ServiceModel;
using System.ServiceModel.Channels;
using System.ServiceModel.Security;
using System.ServiceModel.Security.Tokens;
using NUnit.Framework;
using MonoTests.Helpers;
namespace MonoTests.System.ServiceModel
{
[TestFixture]
public class WrappedKeySecurityTokenTest
{
static readonly X509Certificate2 cert =
new X509Certificate2 (TestResourceHelper.GetFullPathOfResource ("Test/Resources/test.pfx"), "mono");
WrappedKeySecurityToken GetReferent ()
{
string id = "referent";
byte [] key = new byte [32];
X509SecurityToken token = new X509SecurityToken (cert);
SecurityKeyIdentifierClause kic =
new X509ThumbprintKeyIdentifierClause (cert);
string alg = SecurityAlgorithms.RsaOaepKeyWrap;
return new WrappedKeySecurityToken (id, key, alg, token,
new SecurityKeyIdentifier (kic));
}
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void CtorNullId ()
{
WrappedKeySecurityToken w = GetReferent ();
new WrappedKeySecurityToken (null, new byte [32],
w.WrappingAlgorithm,
w.WrappingToken,
w.WrappingTokenReference);
}
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void CtorNullKey ()
{
WrappedKeySecurityToken w = GetReferent ();
new WrappedKeySecurityToken (w.Id, null,
w.WrappingAlgorithm,
w.WrappingToken,
w.WrappingTokenReference);
}
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void CtorNullWrappingAlgorithm ()
{
WrappedKeySecurityToken w = GetReferent ();
new WrappedKeySecurityToken (w.Id, new byte [32],
null,
w.WrappingToken,
w.WrappingTokenReference);
}
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void CtorNullWrappingToken ()
{
WrappedKeySecurityToken w = GetReferent ();
new WrappedKeySecurityToken (w.Id, new byte [32],
w.WrappingAlgorithm,
null,
w.WrappingTokenReference);
}
[Test]
// null SecurityKeyIdentifier is allowed.
//[ExpectedException (typeof (ArgumentNullException))]
public void CtorNullWrappingTokenReference ()
{
WrappedKeySecurityToken w = GetReferent ();
new WrappedKeySecurityToken (w.Id, new byte [32],
w.WrappingAlgorithm,
w.WrappingToken,
null);
}
[Test]
[ExpectedException (typeof (ArgumentException))]
public void UserNameToken () // it does not support any encryption operation.
{
byte [] bytes = new byte [32];
SecurityToken wt = new UserNameSecurityToken ("eno", "enopass");
SecurityKeyIdentifierClause kic =
new X509ThumbprintKeyIdentifierClause (cert);
new WrappedKeySecurityToken ("urn:gyabo",
bytes, SecurityAlgorithms.RsaOaepKeyWrap, wt,
new SecurityKeyIdentifier (kic));
}
[Test]
[ExpectedException (typeof (ArgumentException))]
public void X509TokenForSymmetricKeyWrap ()
{
byte [] bytes = new byte [32];
SecurityToken wt = new X509SecurityToken (cert);
SecurityKeyIdentifierClause kic =
new X509ThumbprintKeyIdentifierClause (cert);
new WrappedKeySecurityToken ("urn:gyabo",
bytes, SecurityAlgorithms.Aes256KeyWrap, wt,
new SecurityKeyIdentifier (kic));
}
[Test]
public void BinarySecretTokenForSymmetricKeyWrap ()
{
byte [] bytes = new byte [32];
SecurityToken wt = new BinarySecretSecurityToken (bytes);
SecurityKeyIdentifierClause kic =
new X509ThumbprintKeyIdentifierClause (cert);
new WrappedKeySecurityToken ("urn:gyabo",
bytes, SecurityAlgorithms.Aes256KeyWrap, wt,
new SecurityKeyIdentifier (kic));
}
[Test]
[ExpectedException (typeof (ArgumentException))]
public void BinarySecretTokenForAsymmetricKeyWrap ()
{
byte [] bytes = new byte [32];
SecurityToken wt = new BinarySecretSecurityToken (bytes);
SecurityKeyIdentifierClause kic =
new X509ThumbprintKeyIdentifierClause (cert);
new WrappedKeySecurityToken ("urn:gyabo",
bytes, SecurityAlgorithms.RsaOaepKeyWrap, wt,
new SecurityKeyIdentifier (kic));
}
[Test]
[ExpectedException (typeof (NotSupportedException))]
public void CreateBinarySecretKeyIdentifierClause ()
{
byte [] bytes = new byte [32];
SecurityToken wt = new BinarySecretSecurityToken (bytes);
SecurityKeyIdentifierClause kic =
new BinarySecretKeyIdentifierClause (bytes);
WrappedKeySecurityToken token = new WrappedKeySecurityToken ("urn:gyabo",
bytes, SecurityAlgorithms.Aes256KeyWrap, wt,
new SecurityKeyIdentifier (kic));
token.CreateKeyIdentifierClause<BinarySecretKeyIdentifierClause> ();
}
[Test]
public void X509WrappingToken1 ()
{
byte [] bytes = new byte [32];
X509SecurityToken xt = new X509SecurityToken (cert);
SecurityKeyIdentifierClause kic =
new X509ThumbprintKeyIdentifierClause (cert);
string alg = SecurityAlgorithms.RsaOaepKeyWrap;
WrappedKeySecurityToken token = new WrappedKeySecurityToken ("urn:gyabo",
bytes, alg, xt,
new SecurityKeyIdentifier (kic));
Assert.AreEqual ("urn:gyabo", token.Id, "#1");
Assert.AreEqual (alg, token.WrappingAlgorithm, "#3");
Assert.AreEqual (xt, token.WrappingToken, "#4");
Assert.AreEqual (1, token.WrappingTokenReference.Count, "#5");
Assert.AreEqual (1, token.SecurityKeys.Count, "#6");
Assert.IsTrue (token.SecurityKeys [0] is InMemorySymmetricSecurityKey, "#7");
Assert.AreEqual (bytes, new X509AsymmetricSecurityKey (cert).DecryptKey (token.WrappingAlgorithm, token.GetWrappedKey ()), "#8");
// wrapped keys cannot be compared, due to the nature of rsa-oaep.
// Assert.AreEqual (new X509AsymmetricSecurityKey (cert).EncryptKey (token.WrappingAlgorithm, bytes), token.GetWrappedKey (), "#9-1");
// Assert.AreEqual (token.GetWrappedKey (), new WrappedKeySecurityToken ("urn:gyabo",
// bytes, alg, xt,
// new SecurityKeyIdentifier (kic)).GetWrappedKey (), "#9");
}
}
}
#endif
|