Search in sources :

Example 1 with X509CertPath

use of org.eclipse.californium.elements.auth.X509CertPath in project leshan by eclipse.

the class EndpointContextSerDes method serialize.

public static JsonObject serialize(EndpointContext context) {
    JsonObject peer = Json.object();
    peer.set(KEY_ADDRESS, context.getPeerAddress().getHostString());
    peer.set(KEY_PORT, context.getPeerAddress().getPort());
    Principal principal = context.getPeerIdentity();
    if (principal != null) {
        if (principal instanceof PreSharedKeyIdentity) {
            peer.set(KEY_ID, principal.getName());
        } else if (principal instanceof RawPublicKeyIdentity) {
            PublicKey publicKey = ((RawPublicKeyIdentity) principal).getKey();
            peer.set(KEY_RPK, Hex.encodeHexString(publicKey.getEncoded()));
        } else if (principal instanceof X500Principal || principal instanceof X509CertPath) {
            peer.set(KEY_DN, principal.getName());
        }
    }
    /**
     * copy the attributes *
     */
    Map<String, String> attributes = context.entries();
    if (!attributes.isEmpty()) {
        JsonObject attContext = Json.object();
        for (String key : attributes.keySet()) {
            attContext.set(key, attributes.get(key));
        }
        peer.set(KEY_ATTRIBUTES, attContext);
    }
    return peer;
}
Also used : PublicKey(java.security.PublicKey) RawPublicKeyIdentity(org.eclipse.californium.elements.auth.RawPublicKeyIdentity) JsonObject(com.eclipsesource.json.JsonObject) X500Principal(javax.security.auth.x500.X500Principal) PreSharedKeyIdentity(org.eclipse.californium.elements.auth.PreSharedKeyIdentity) X500Principal(javax.security.auth.x500.X500Principal) Principal(java.security.Principal) X509CertPath(org.eclipse.californium.elements.auth.X509CertPath)

Example 2 with X509CertPath

use of org.eclipse.californium.elements.auth.X509CertPath in project leshan by eclipse.

the class EndpointContextUtil method extractIdentity.

public static Identity extractIdentity(EndpointContext context) {
    InetSocketAddress peerAddress = context.getPeerAddress();
    Principal senderIdentity = context.getPeerIdentity();
    if (senderIdentity != null) {
        if (senderIdentity instanceof PreSharedKeyIdentity) {
            return Identity.psk(peerAddress, senderIdentity.getName());
        } else if (senderIdentity instanceof RawPublicKeyIdentity) {
            PublicKey publicKey = ((RawPublicKeyIdentity) senderIdentity).getKey();
            return Identity.rpk(peerAddress, publicKey);
        } else if (senderIdentity instanceof X500Principal || senderIdentity instanceof X509CertPath) {
            // Extract common name
            String x509CommonName = extractCN(senderIdentity.getName());
            return Identity.x509(peerAddress, x509CommonName);
        }
        throw new IllegalStateException("Unable to extract sender identity : unexpected type of Principal");
    }
    return Identity.unsecure(peerAddress);
}
Also used : InetSocketAddress(java.net.InetSocketAddress) PublicKey(java.security.PublicKey) RawPublicKeyIdentity(org.eclipse.californium.elements.auth.RawPublicKeyIdentity) X500Principal(javax.security.auth.x500.X500Principal) PreSharedKeyIdentity(org.eclipse.californium.elements.auth.PreSharedKeyIdentity) Principal(java.security.Principal) X500Principal(javax.security.auth.x500.X500Principal) X509CertPath(org.eclipse.californium.elements.auth.X509CertPath)

Aggregations

Principal (java.security.Principal)2 PublicKey (java.security.PublicKey)2 X500Principal (javax.security.auth.x500.X500Principal)2 PreSharedKeyIdentity (org.eclipse.californium.elements.auth.PreSharedKeyIdentity)2 RawPublicKeyIdentity (org.eclipse.californium.elements.auth.RawPublicKeyIdentity)2 X509CertPath (org.eclipse.californium.elements.auth.X509CertPath)2 JsonObject (com.eclipsesource.json.JsonObject)1 InetSocketAddress (java.net.InetSocketAddress)1